Icon TEncryptionType

Unit: WebSrvr

TEncryptionType = (etAES128,etAES192,etAES256)

Available In: Server Applications

The TEncryptionType enumerated type is used to specify the type of encryption to use with the TStream Encrypt and Decrypt methods.

Information The AES (Advanced Encryption Standard, originally Rijndael) encryption algorithm is the only supported type of encryption at this time.


ElementDescription
etAES128Specifies that the indicated portion of the stream should be encrypted using the AES-128 format (block size of 128-bits with an 128-bit key).
etAES192Specifies that the indicated portion of the stream should be encrypted using the AES-192 format (block size of 128-bits with an 192-bit key).
etAES256Specifies that the indicated portion of the stream should be encrypted using the AES-256 format (block size of 128-bits with an 256-bit key).
Image