Block Cipher Functions
CIPHER_EncryptBytes
- Encrypts an array of bytes using specified block cipher algorithm, mode and padding.
CIPHER_DecryptBytes
- Decrypts an array of bytes using specified block cipher algorithm, mode and padding.
Supersedes:
CIPHER_Bytes
- Encrypts/decrypts an array of bytes using specified block cipher algorithm and mode - @deprecated.
CIPHER_FileEncrypt
- Encrypts a file using specified block cipher algorithm, mode and padding.
CIPHER_FileDecrypt
- Decrypts a file using specified block cipher algorithm, mode and padding.
Supersedes:
CIPHER_File
- Encrypts/decrypts a file using specified block cipher algorithm and mode - @deprecated.
CIPHER_EncryptHex
- Encrypt hex-encoded data using specified block cipher algorithm, mode and padding.
CIPHER_DecryptHex
- Decrypt hex-encoded data using specified block cipher algorithm, mode and padding.
Supersedes:
CIPHER_Hex
- Encrypts/decrypts data in a hex-encoded string using specified block cipher algorithm and mode - @deprecated.
CIPHER_EncryptAEAD
- Encrypt data using an authenticated encryption algorithm.
CIPHER_DecryptAEAD
- Decrypt data using an authenticated encryption algorithm.
CIPHER_KeyWrap
- Wraps a content-encryption key with a key-encryption key.
CIPHER_KeyUnwrap
- Unwraps a content-encryption key with a key-encryption key.
[Contents] [Index]