D | AesGcmHkdfAeadCrypter.java | 58 public void encrypt(ByteBuffer ciphertext, ByteBuffer plaintext, byte[] nonce) in encrypt() argument 60 maybeRekey(nonce); in encrypt() 61 maskNonce(nonceBuffer, nonceMask, nonce); in encrypt() 66 public void encrypt(ByteBuffer ciphertext, ByteBuffer plaintext, ByteBuffer aad, byte[] nonce) in encrypt() argument 68 maybeRekey(nonce); in encrypt() 69 maskNonce(nonceBuffer, nonceMask, nonce); in encrypt() 74 public void decrypt(ByteBuffer plaintext, ByteBuffer ciphertext, byte[] nonce) in decrypt() argument 76 maybeRekey(nonce); in decrypt() 77 maskNonce(nonceBuffer, nonceMask, nonce); in decrypt() 82 public void decrypt(ByteBuffer plaintext, ByteBuffer ciphertext, ByteBuffer aad, byte[] nonce) in decrypt() argument [all …]
|