aes128enc Function
Function: |
Encrypts data in 16-byte blocks according to the AES128 algorithm. |
Syntax: |
aes128enc(byref key as string, byref plain as string) as string |
Returns: |
Encrypted data (which will consist of complete 16-character blocks). |
See Also: |
Part |
Description |
key |
Encryption key. Must be 16 characters long, or a NULL string will be returned. |
plain |
Plain (unencrypted) data. Will be processed in 16-byte blocks. Last incomplete block will be padded with zeroes. |