Searched refs:readEncryptedPayload (Results 1 – 1 of 1) sorted by relevance
252 byte[] version = readEncryptedPayload(ciphertextBuffer, VERSION.length); in decrypt()264 senderPublicKeyBytes = readEncryptedPayload(ciphertextBuffer, EC_PUBLIC_KEY_LEN_BYTES); in decrypt()269 byte[] randNonce = readEncryptedPayload(ciphertextBuffer, GCM_NONCE_LEN_BYTES); in decrypt()270 byte[] ciphertext = readEncryptedPayload(ciphertextBuffer, ciphertextBuffer.remaining()); in decrypt()276 private static byte[] readEncryptedPayload(ByteBuffer buffer, int length) in readEncryptedPayload() method in SecureBox