Home
last modified time | relevance | path

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

/system/security/keystore2/src/crypto/
Dcrypto.hpp54 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);
Dlib.rs25 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()
Dcrypto.cpp222 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()
DAndroid.bp80 "--allowlist-type", "EC_POINT",
/system/keymaster/include/keymaster/km_openssl/
Dopenssl_utils.h61 DEFINE_OPENSSL_OBJECT_POINTER(EC_POINT)
/system/keymaster/km_openssl/
Dnist_curve_key_exchange.cpp101 UniquePtr<EC_POINT, EC_POINT_Delete> point(EC_POINT_new(group)); in CalculateSharedKey()
Dopenssl_utils.cpp138 const EC_POINT* jacobian_coords = EC_KEY_get0_public_key(ecKey); in GetEcdsa256KeyFromCert()
/system/keymaster/tests/
Dnist_curve_key_exchange_test.cpp99 EC_POINT* point_at_infinity = EC_POINT_new(group); in TEST()