Home
last modified time | relevance | path

Searched refs:ciphertextBuffer (Results 1 – 1 of 1) sorted by relevance

/frameworks/base/libs/securebox/src/com/android/security/
DSecureBox.java255 ByteBuffer ciphertextBuffer = ByteBuffer.wrap(encryptedPayload); in decrypt() local
256 byte[] version = readEncryptedPayload(ciphertextBuffer, VERSION.length); in decrypt()
268 senderPublicKeyBytes = readEncryptedPayload(ciphertextBuffer, EC_PUBLIC_KEY_LEN_BYTES); in decrypt()
273 byte[] randNonce = readEncryptedPayload(ciphertextBuffer, GCM_NONCE_LEN_BYTES); in decrypt()
274 byte[] ciphertext = readEncryptedPayload(ciphertextBuffer, ciphertextBuffer.remaining()); in decrypt()