Home
last modified time | relevance | path

Searched defs:ECPoint (Results 1 – 11 of 11) sorted by relevance

/external/tink/go/hybrid/subtle/
Delliptic_curves.go61 type ECPoint struct { struct
62 X, Y *big.Int
98 func PointEncode(c elliptic.Curve, pFormat string, pt ECPoint) ([]byte, error) {
220 func validatePublicPoint(pub *ECPoint, priv *ECPrivateKey) error {
228 func ComputeSharedSecret(pub *ECPoint, priv *ECPrivateKey) ([]byte, error) {
/external/private-join-and-compute/private_join_and_compute/crypto/
Dec_point.cc30 ECPoint::ECPoint(const EC_GROUP* group, BN_CTX* bn_ctx) in ECPoint() function in private_join_and_compute::ECPoint
35 ECPoint::ECPoint(const EC_GROUP* group, BN_CTX* bn_ctx, const BigNum& x, in ECPoint() function in private_join_and_compute::ECPoint
43 ECPoint::ECPoint(const EC_GROUP* group, BN_CTX* bn_ctx, ECPointPtr point) in ECPoint() function in private_join_and_compute::ECPoint
Dec_group.h30 class ECPoint; variable
Delgamal.h50 class ECPoint; variable
/external/private-join-and-compute/private_join_and_compute/py/crypto_util/
Delliptic_curve.py32 class ECPoint(object): class
201 def __eq__(self, other: 'ECPoint'):
210 def __ne__(self, other: 'ECPoint'):
/external/python/pyasn1-modules/pyasn1_modules/
Drfc5480.py36 ECPoint = rfc3279.ECPoint variable
Drfc3279.py169 class ECPoint(univ.OctetString): class
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/math/ec/
DECPoint.java14 public abstract class ECPoint class
57 protected ECPoint(ECCurve curve, ECFieldElement x, ECFieldElement y) in ECPoint() method in ECPoint
62 protected ECPoint(ECCurve curve, ECFieldElement x, ECFieldElement y, ECFieldElement[] zs) in ECPoint() method in ECPoint
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/math/ec/
DECPoint.java14 public abstract class ECPoint class
57 protected ECPoint(ECCurve curve, ECFieldElement x, ECFieldElement y) in ECPoint() method in ECPoint
62 protected ECPoint(ECCurve curve, ECFieldElement x, ECFieldElement y, ECFieldElement[] zs) in ECPoint() method in ECPoint
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
DECPoint.java12 public abstract class ECPoint class
55 protected ECPoint(ECCurve curve, ECFieldElement x, ECFieldElement y) in ECPoint() method in ECPoint
60 protected ECPoint(ECCurve curve, ECFieldElement x, ECFieldElement y, ECFieldElement[] zs) in ECPoint() method in ECPoint
/external/python/asn1crypto/asn1crypto/
Dkeys.py197 class ECPoint(OctetString, _ECPoint): class