HomeSort by relevance Sort by last modified time
    Searched full:peer_public_value (Results 1 - 8 of 8) sorted by null

  /system/keymaster/
ecies_kem_test.cpp 54 Buffer peer_public_value; local
55 ASSERT_TRUE(key_exchange->public_value(&peer_public_value));
59 ASSERT_TRUE(kem->Encrypt(peer_public_value, &output_clear_key, &output_encrypted_key));
61 ASSERT_EQ(peer_public_value.available_read(), output_encrypted_key.available_read());
key_exchange.h 39 virtual bool CalculateSharedKey(const Buffer& peer_public_value, Buffer* shared_key) const = 0;
40 virtual bool CalculateSharedKey(const uint8_t* peer_public_value, size_t peer_public_value_len,
nist_curve_key_exchange.cpp 88 bool NistCurveKeyExchange::CalculateSharedKey(const Buffer& peer_public_value,
91 return CalculateSharedKey(peer_public_value.peek_read(), peer_public_value.available_read(),
95 bool NistCurveKeyExchange::CalculateSharedKey(const uint8_t* peer_public_value,
102 group, point.get(), peer_public_value, peer_public_value_len,
ecies_kem.h 42 bool Encrypt(const Buffer& peer_public_value, Buffer* output_clear_key,
44 bool Encrypt(const uint8_t* peer_public_value, size_t peer_public_value_len,
kem.h 40 virtual bool Encrypt(const Buffer& peer_public_value, Buffer* output_clear_key,
42 virtual bool Encrypt(const uint8_t* peer_public_value, size_t peer_public_value_len,
nist_curve_key_exchange.h 53 bool CalculateSharedKey(const uint8_t* peer_public_value, size_t peer_public_value_len,
55 bool CalculateSharedKey(const Buffer& peer_public_value, Buffer* shared_key) const override;
ecies_kem.cpp 75 bool EciesKem::Encrypt(const Buffer& peer_public_value, Buffer* output_clear_key,
77 return Encrypt(peer_public_value.peek_read(), peer_public_value.available_read(),
82 bool EciesKem::Encrypt(const uint8_t* peer_public_value, size_t peer_public_value_len,
91 if (!key_exchange_->CalculateSharedKey(peer_public_value, peer_public_value_len,
  /external/boringssl/src/crypto/curve25519/
curve25519.c     [all...]

Completed in 839 milliseconds