Searched refs:EC_POINT (Results 1 – 8 of 8) sorted by relevance
/system/security/keystore2/src/crypto/ |
D | crypto.hpp | 54 int ECDHComputeKey(void *out, const EC_POINT *pub_key, const EC_KEY *priv_key); 62 size_t ECPOINTPoint2Oct(const EC_POINT *point, uint8_t *buf, size_t len); 64 EC_POINT* ECPOINTOct2Point(const uint8_t *buf, size_t len);
|
D | lib.rs | 25 EC_POINT_free, HKDFExpand, HKDFExtract, EC_KEY, EC_MAX_BYTES, EC_POINT, EVP_MAX_MD_SIZE, 283 pub struct OwnedECPoint(*mut EC_POINT); 287 data: *const EC_POINT, 288 phantom: PhantomData<&'a EC_POINT>, 293 pub fn get_point(&self) -> &EC_POINT { in get_point() argument 301 pub fn get_point(&self) -> &EC_POINT { in get_point() argument 316 pub fn ecdh_compute_key(pub_key: &EC_POINT, priv_key: &ECKey) -> Result<ZVec, Error> { in ecdh_compute_key() argument 383 pub fn ec_point_point_to_oct(point: &EC_POINT) -> Result<Vec<u8>, Error> { in ec_point_point_to_oct()
|
D | crypto.cpp | 222 int ECDHComputeKey(void* out, const EC_POINT* pub_key, const EC_KEY* priv_key) { in ECDHComputeKey() 264 size_t ECPOINTPoint2Oct(const EC_POINT* point, uint8_t* buf, size_t len) { in ECPOINTPoint2Oct() 272 EC_POINT* ECPOINTOct2Point(const uint8_t* buf, size_t len) { in ECPOINTOct2Point() 274 EC_POINT* point = EC_POINT_new(group); in ECPOINTOct2Point()
|
D | Android.bp | 80 "--allowlist-type", "EC_POINT",
|
/system/keymaster/include/keymaster/km_openssl/ |
D | openssl_utils.h | 61 DEFINE_OPENSSL_OBJECT_POINTER(EC_POINT)
|
/system/keymaster/km_openssl/ |
D | nist_curve_key_exchange.cpp | 101 UniquePtr<EC_POINT, EC_POINT_Delete> point(EC_POINT_new(group)); in CalculateSharedKey()
|
D | openssl_utils.cpp | 138 const EC_POINT* jacobian_coords = EC_KEY_get0_public_key(ecKey); in GetEcdsa256KeyFromCert()
|
/system/keymaster/tests/ |
D | nist_curve_key_exchange_test.cpp | 99 EC_POINT* point_at_infinity = EC_POINT_new(group); in TEST()
|