B4R Question Inline C: Call with several variable types

KMatle

Expert
Licensed User
Longtime User
I'm just developing Inline C methods to en-/decrypt AES 256 including hashed passwords and IV compatible to B4x. Works like a charm (will post it later when it's ready) but I am too dumb to do calls with the matching types (but I'm able to return everything).

I need an example how to call these types (in one call):

char plaintext[256] (from a string)
char *pw (from a string)
uint8_t iv[16] (from a byte array)
 
Top