Home
last modified time | relevance | path

Searched defs:EllipticCurve (Results 1 – 5 of 5) sorted by relevance

/external/rust/crates/coset/src/key/
Dmod.rs190 pub fn new_ec2_pub_key(curve: iana::EllipticCurve, x: Vec<u8>, y: Vec<u8>) -> Self { in new_ec2_pub_key()
207 pub fn new_ec2_pub_key_y_sign(curve: iana::EllipticCurve, x: Vec<u8>, y_sign: bool) -> Self { in new_ec2_pub_key_y_sign()
228 curve: iana::EllipticCurve, in new_ec2_priv_key()
/external/conscrypt/testing/src/main/java/org/conscrypt/tlswire/handshake/
DEllipticCurve.java22 public enum EllipticCurve { enum
57 private EllipticCurve(int identifier, String name) { in EllipticCurve() method in EllipticCurve
/external/conscrypt/repackaged/testing/src/main/java/com/android/org/conscrypt/tlswire/handshake/
DEllipticCurve.java24 public enum EllipticCurve { enum
59 private EllipticCurve(int identifier, String name) { in EllipticCurve() method in EllipticCurve
/external/rust/crates/coset/src/iana/
Dmod.rs585 impl WithPrivateRange for EllipticCurve { implementation
/external/python/cryptography/src/cryptography/hazmat/primitives/asymmetric/
Dec.py40 class EllipticCurve(object): class