Uses of Class
com.dracoon.sdk.crypto.model.EncryptedDataContainer
Packages that use EncryptedDataContainer
-
Uses of EncryptedDataContainer in com.dracoon.sdk.crypto
Methods in com.dracoon.sdk.crypto that return EncryptedDataContainerModifier and TypeMethodDescriptionFileEncryptionCipher.doFinal()Completes the encryption and calculates a kind of checksum which is later used at the decryption to verify the integrity of decrypted bytes.
After this method is called no further calls ofprocessBytesanddoFinalare possible.FileEncryptionCipher.processBytes(PlainDataContainer plainData) Encrypts some bytes.
IMPORTANT!!!: After all plain bytes have been processed,doFinalmust be called to complete the encryption.Methods in com.dracoon.sdk.crypto with parameters of type EncryptedDataContainerModifier and TypeMethodDescriptionFileDecryptionCipher.doFinal(EncryptedDataContainer encData) Completes the decryption and verifies the integrity of decrypted bytes.
After this method is called no further calls ofprocessBytesanddoFinalare possible.FileDecryptionCipher.processBytes(EncryptedDataContainer encData) Decrypts some bytes.
IMPORTANT!!!: After all encrypted bytes have been processed,doFinalmust be called to complete the decryption. -
Uses of EncryptedDataContainer in com.dracoon.sdk.crypto.internal
Methods in com.dracoon.sdk.crypto.internal that return EncryptedDataContainerModifier and TypeMethodDescriptionAesGcmFileEncryptionCipher.doFinal()AesGcmFileEncryptionCipher.processBytes(PlainDataContainer plainData) Methods in com.dracoon.sdk.crypto.internal with parameters of type EncryptedDataContainerModifier and TypeMethodDescriptionAesGcmFileDecryptionCipher.doFinal(EncryptedDataContainer encData) AesGcmFileDecryptionCipher.processBytes(EncryptedDataContainer encData)