Home
last modified time | relevance | path

Searched defs:aad (Results 1 – 6 of 6) sorted by relevance

/libcore/luni/src/main/java/android/crypto/hpke/
DHpkeSpi.java171 @NonNull byte[] engineSeal(@NonNull byte[] plaintext, @Nullable byte[] aad); in engineSeal()
183 @NonNull byte[] engineOpen(@NonNull byte[] ciphertext, @Nullable byte[] aad) in engineOpen()
DHpke.java216 @NonNull byte[] plaintext, @Nullable byte[] aad) in seal()
243 @Nullable byte[] aad) in open()
DDuckTypedHpkeSpi.java158 public byte[] engineSeal(byte[] plaintext, byte[] aad) { in engineSeal()
168 public byte[] engineOpen(byte[] ciphertext, byte[] aad) throws GeneralSecurityException { in engineOpen()
DSender.java63 public @NonNull byte[] seal(@NonNull byte[] plaintext, @Nullable byte[] aad) { in seal()
DRecipient.java55 public @NonNull byte[] open(@NonNull byte[] ciphertext, @Nullable byte[] aad) in open()
/libcore/luni/src/test/java/libcore/android/crypto/hpke/
DHpkeTest.java86 public byte[] aad; field in HpkeTest.SendReceiveTests