Object
AES_ECB
IEncryptionAlgorithm
![]() | Constructor that takes key as String for the AES_ECB class. |
![]() | Constructor that takes key as MemoryBlock for the AES_ECB class. |
![]() | Use this function to decrypt a block of data that comes from string. Because AES works on blocks of 16 bytes then you get the best performance if the block size that you pass to it is dividable by 16. The class has built in cache technology so it will work if the the block size is not dividable by 16, but it will be slower. |
![]() | Use this function to decrypt a block of data that comes from MemoryBlock. Because AES works on blocks of 16 bytes then you get the best performance if the block size that you pass to it is dividable by 16. The class has built in cache technology so it will work if the the block size is not dividable by 16, but it will be slower. |
![]() | Use this function to encrypt a block of data that comes from string. Because AES works on blocks of 16 bytes then you get the best performance if the block size that you pass to it is dividable by 16. The class has built in cache technology so it will work if the the block size is not dividable by 8, but it will be slower. |
![]() | Use this function to encrypt a block of data that comes from MemoryBlock. Because AES works on blocks of 16 bytes then you get the best performance if the block size that you pass to it is dividable by 16. The class has built in cache technology so it will work if the the block size is not dividable by 8, but it will be slower. |
![]() | Use this function to finish decrypting and getting the final bytes as String after you have decrypted all of the blocks. |
![]() | Use this function to finish decrypting and getting the final bytes as MemoryBlock after you have decrypted all of the blocks. |
![]() | Use this function to finish encrypting and get the final bytes as String after you have encrypted all of the blocks. |
![]() | Use this function to finish encrypting and get the final bytes as MemoryBlock after you have encrypted all of the blocks. |
![]() | Use this property to get the padding value that is needed for this algorithm. (AES will always return 16 here). |