HomeSort by relevance Sort by last modified time
    Searched refs:Ed25519 (Results 1 - 10 of 10) sorted by null

  /external/ukey2/src/main/java/com/google/security/cryptauth/lib/securegcm/
D2DSpakeEd25519Handshake.java 23 import com.google.security.cryptauth.lib.securegcm.Ed25519.Ed25519Exception;
36 * Exchange Protocol) on top of the Ed25519 curve.
38 * Ed25519: http://ed25519.cr.yp.to/
122 // Source of ed25519 is here: http://ed25519.cr.yp.to/python/ed25519.py
123 // import ed25519
127 // seed1 = 'D2D Ed25519 point generation seed (M)'
128 // seed2 = 'D2D Ed25519 point generation seed (N)
    [all...]
Ed25519.java 25 * Implements the Ed25519 twisted Edwards curve. See http://ed25519.cr.yp.to/ for more details.
27 public class Ed25519 {
30 private Ed25519() { }
32 // Curve parameters (http://ed25519.cr.yp.to/)
  /external/boringssl/src/ssl/test/runner/ed25519/
ed25519.go 5 // Package ed25519 implements the Ed25519 signature algorithm. See
6 // https://ed25519.cr.yp.to/.
8 // These functions are also compatible with the ?Ed25519? function defined in
13 package ed25519 package
15 // This code is a port of the public domain, ?ref10? implementation of ed25519
27 "boringssl.googlesource.com/boringssl/ssl/test/runner/ed25519/internal/edwards25519"
41 // PublicKey is the type of Ed25519 public keys.
44 // PrivateKey is the type of Ed25519 private keys. It implements crypto.Signer.
64 // Ed25519 performs two passes over messages to be signed and therefore canno
    [all...]
  /external/boringssl/src/ssl/test/runner/
sign.go 21 "boringssl.googlesource.com/boringssl/ssl/test/runner/ed25519"
250 _, ok := key.(ed25519.PrivateKey)
255 privKey, ok := key.(ed25519.PrivateKey)
257 return nil, errors.New("invalid key type for Ed25519")
260 return ed25519.Sign(privKey, msg), nil
264 pubKey, ok := key.(ed25519.PublicKey)
266 return errors.New("invalid key type for Ed25519")
269 if !ed25519.Verify(pubKey, msg, sig) {
270 return errors.New("invalid Ed25519 signature")
runner.go     [all...]
key_agreement.go 20 "boringssl.googlesource.com/boringssl/ssl/test/runner/ed25519"
538 _, ed25519Ok := publicKey.(ed25519.PublicKey)
540 return errors.New("tls: ECDHE ECDSA requires a ECDSA or Ed25519 server public key")
handshake_server.go 21 "boringssl.googlesource.com/boringssl/ssl/test/runner/ed25519"
    [all...]
  /external/boringssl/src/ssl/test/runner/ed25519/internal/edwards25519/
const.go 7 // These values are from the public domain, ?ref10? implementation of ed25519
30 // bi contains precomputed multiples of the base-point. See the Ed25519 paper
75 // base contains precomputed multiples of the base-point. See the Ed25519 paper
    [all...]
edwards25519.go 9 // This code is a port of the public domain, ?ref10? implementation of ed25519
878 // B is the Ed25519 base point (x,4/5) with x positive.
966 // B is the Ed25519 base point (x,4/5) with x positive.
    [all...]
  /external/boringssl/src/crypto/evp/
evp_extra_test.cc 544 TEST(EVPExtraTest, Ed25519) {
    [all...]

Completed in 3549 milliseconds