Home
last modified time | relevance | path

Searched refs:ecdsa (Results 1 – 25 of 56) sorted by relevance

123

/third_party/node/deps/openssl/openssl/providers/common/der/
DEC.asn121 ecdsa-with-SHA1 OBJECT IDENTIFIER ::= { id-ecSigType 1 }
69 ecdsa-with-SHA224 OBJECT IDENTIFIER ::= { iso(1) member-body(2)
70 us(840) ansi-X9-62(10045) signatures(4) ecdsa-with-SHA2(3) 1 }
72 ecdsa-with-SHA256 OBJECT IDENTIFIER ::= { iso(1) member-body(2)
73 us(840) ansi-X9-62(10045) signatures(4) ecdsa-with-SHA2(3) 2 }
75 ecdsa-with-SHA384 OBJECT IDENTIFIER ::= { iso(1) member-body(2)
76 us(840) ansi-X9-62(10045) signatures(4) ecdsa-with-SHA2(3) 3 }
78 ecdsa-with-SHA512 OBJECT IDENTIFIER ::= { iso(1) member-body(2)
79 us(840) ansi-X9-62(10045) signatures(4) ecdsa-with-SHA2(3) 4 }
86 id-ecdsa-with-sha3-224 OBJECT IDENTIFIER ::= { sigAlgs 9 }
[all …]
/third_party/openssl/providers/common/der/
DEC.asn121 ecdsa-with-SHA1 OBJECT IDENTIFIER ::= { id-ecSigType 1 }
69 ecdsa-with-SHA224 OBJECT IDENTIFIER ::= { iso(1) member-body(2)
70 us(840) ansi-X9-62(10045) signatures(4) ecdsa-with-SHA2(3) 1 }
72 ecdsa-with-SHA256 OBJECT IDENTIFIER ::= { iso(1) member-body(2)
73 us(840) ansi-X9-62(10045) signatures(4) ecdsa-with-SHA2(3) 2 }
75 ecdsa-with-SHA384 OBJECT IDENTIFIER ::= { iso(1) member-body(2)
76 us(840) ansi-X9-62(10045) signatures(4) ecdsa-with-SHA2(3) 3 }
78 ecdsa-with-SHA512 OBJECT IDENTIFIER ::= { iso(1) member-body(2)
79 us(840) ansi-X9-62(10045) signatures(4) ecdsa-with-SHA2(3) 4 }
86 id-ecdsa-with-sha3-224 OBJECT IDENTIFIER ::= { sigAlgs 9 }
[all …]
/third_party/openssl/test/ssl-tests/
D20-cert-select.cnf.in16 "ECDSA.Certificate" => test_pem("server-ecdsa-cert.pem"),
17 "ECDSA.PrivateKey" => test_pem("server-ecdsa-key.pem"),
28 "ECDSA.Certificate" => test_pem("server-ecdsa-cert.pem"),
29 "ECDSA.PrivateKey" => test_pem("server-ecdsa-key.pem"),
83 "ECDSA.Certificate" => test_pem("server-ecdsa-cert.pem"),
84 "ECDSA.PrivateKey" => test_pem("server-ecdsa-key.pem"),
107 "ECDSA.Certificate" => test_pem("server-ecdsa-cert.pem"),
108 "ECDSA.PrivateKey" => test_pem("server-ecdsa-key.pem"),
409 "ECDSA.Certificate" => test_pem("server-ecdsa-cert.pem"),
410 "ECDSA.PrivateKey" => test_pem("server-ecdsa-key.pem"),
[all …]
D20-cert-select.cnf74 ECDSA.Certificate = ${ENV::TEST_CERTS_DIR}/server-ecdsa-cert.pem
75 ECDSA.PrivateKey = ${ENV::TEST_CERTS_DIR}/server-ecdsa-key.pem
109 ECDSA.Certificate = ${ENV::TEST_CERTS_DIR}/server-ecdsa-cert.pem
110 ECDSA.PrivateKey = ${ENV::TEST_CERTS_DIR}/server-ecdsa-key.pem
142 ECDSA.Certificate = ${ENV::TEST_CERTS_DIR}/server-ecdsa-cert.pem
143 ECDSA.PrivateKey = ${ENV::TEST_CERTS_DIR}/server-ecdsa-key.pem
172 ECDSA.Certificate = ${ENV::TEST_CERTS_DIR}/server-ecdsa-cert.pem
173 ECDSA.PrivateKey = ${ENV::TEST_CERTS_DIR}/server-ecdsa-key.pem
205 ECDSA.Certificate = ${ENV::TEST_CERTS_DIR}/server-ecdsa-cert.pem
206 ECDSA.PrivateKey = ${ENV::TEST_CERTS_DIR}/server-ecdsa-key.pem
[all …]
/third_party/node/test/parallel/
Dtest-tls-multi-key.js152 const ecdsa = tls.connect(this.address().port, {
159 assert.deepStrictEqual(ecdsa.getCipher(), {
164 assert.strictEqual(ecdsa.getPeerCertificate().subject.CN, eccCN);
165 assert.strictEqual(ecdsa.getPeerCertificate().asn1Curve, 'prime256v1');
166 ecdsa.end();
Dtest-tls-multi-pfx.js25 const ecdsa = tls.connect(this.address().port, {
30 ciphers.push(ecdsa.getCipher());
37 ecdsa.end();
/third_party/mbedtls/programs/test/
Dbenchmark.c515 rsa, dhm, ecdsa, ecdh; member
591 todo.ecdsa = 1; in main()
1029 if (todo.ecdsa) { in main()
1030 mbedtls_ecdsa_context ecdsa; in main() local
1043 mbedtls_ecdsa_init(&ecdsa); in main()
1045 if (mbedtls_ecdsa_genkey(&ecdsa, curve_info->grp_id, myrand, NULL) != 0) { in main()
1054 mbedtls_ecdsa_write_signature(&ecdsa, MBEDTLS_MD_SHA256, buf, in main()
1059 mbedtls_ecdsa_free(&ecdsa); in main()
1069 mbedtls_ecdsa_init(&ecdsa); in main()
1071 if (mbedtls_ecdsa_genkey(&ecdsa, curve_info->grp_id, myrand, NULL) != 0 || in main()
[all …]
/third_party/openssl/test/certs/
DembeddedSCTs3.sct7 Signature : ecdsa-with-SHA256
19 Signature : ecdsa-with-SHA256
31 Signature : ecdsa-with-SHA256
DembeddedSCTs1.sct7 Signature : ecdsa-with-SHA256
/third_party/libwebsockets/lib/tls/mbedtls/
Dlws-genec.c242 mbedtls_ecdsa_context ecdsa; in lws_genecdh_new_keypair() local
258 mbedtls_ecdsa_init(&ecdsa); in lws_genecdh_new_keypair()
259 n = mbedtls_ecdsa_genkey(&ecdsa, (mbedtls_ecp_group_id)curve->tls_lib_nid, in lws_genecdh_new_keypair()
267 kp = (mbedtls_ecp_keypair *)&ecdsa; in lws_genecdh_new_keypair()
304 mbedtls_ecdsa_free(&ecdsa); in lws_genecdh_new_keypair()
313 mbedtls_ecdsa_free(&ecdsa); in lws_genecdh_new_keypair()
/third_party/libwebsockets/lib/cose/
Dcose_sign_alg.c52 goto ecdsa; in lws_cose_sign_alg_create()
57 goto ecdsa; in lws_cose_sign_alg_create()
62 ecdsa: in lws_cose_sign_alg_create()
Dcose_validate_alg.c52 goto ecdsa; in lws_cose_val_alg_create()
57 goto ecdsa; in lws_cose_val_alg_create()
62 ecdsa: in lws_cose_val_alg_create()
/third_party/node/deps/npm/node_modules/@tufjs/models/dist/utils/
Dkey.js79 key: ecdsa.hexToDER(keyInfo.keyVal),
115 const ecdsa = { variable
/third_party/mbedtls/scripts/
Decc-heap.sh92 programs/test/benchmark ecdh ecdsa
/third_party/openssl/test/ct/
Dtls1.sct7 Signature : ecdsa-with-SHA256
/third_party/mbedtls/programs/pkey/
DCMakeLists.txt15 ecdsa
/third_party/mbedtls/programs/
DMakefile91 pkey/ecdsa \
235 pkey/ecdsa$(EXEXT): pkey/ecdsa.c $(DEP)
237 $(CC) $(LOCAL_CFLAGS) $(CFLAGS) pkey/ecdsa.c $(LOCAL_LDFLAGS) $(LDFLAGS) -o $@
D.gitignore27 pkey/ecdsa
/third_party/rust/crates/rust-openssl/openssl/src/
Dlib.rs151 pub mod ecdsa; module
/third_party/node/deps/openssl/openssl/crypto/objects/
Dobjects.txt94 X9-62_id-ecSigType 1 : ecdsa-with-SHA1
95 X9-62_id-ecSigType 2 : ecdsa-with-Recommended
96 X9-62_id-ecSigType 3 : ecdsa-with-Specified
97 ecdsa-with-Specified 1 : ecdsa-with-SHA224
98 ecdsa-with-Specified 2 : ecdsa-with-SHA256
99 ecdsa-with-Specified 3 : ecdsa-with-SHA384
100 ecdsa-with-Specified 4 : ecdsa-with-SHA512
1031 sigAlgs 9 : id-ecdsa-with-sha3-224 : ecdsa_with_SHA3-224
1032 sigAlgs 10 : id-ecdsa-with-sha3-256 : ecdsa_with_SHA3-256
1033 sigAlgs 11 : id-ecdsa-with-sha3-384 : ecdsa_with_SHA3-384
[all …]
/third_party/openssl/crypto/objects/
Dobjects.txt94 X9-62_id-ecSigType 1 : ecdsa-with-SHA1
95 X9-62_id-ecSigType 2 : ecdsa-with-Recommended
96 X9-62_id-ecSigType 3 : ecdsa-with-Specified
97 ecdsa-with-Specified 1 : ecdsa-with-SHA224
98 ecdsa-with-Specified 2 : ecdsa-with-SHA256
99 ecdsa-with-Specified 3 : ecdsa-with-SHA384
100 ecdsa-with-Specified 4 : ecdsa-with-SHA512
1031 sigAlgs 9 : id-ecdsa-with-sha3-224 : ecdsa_with_SHA3-224
1032 sigAlgs 10 : id-ecdsa-with-sha3-256 : ecdsa_with_SHA3-256
1033 sigAlgs 11 : id-ecdsa-with-sha3-384 : ecdsa_with_SHA3-384
[all …]
/third_party/openssl/test/recipes/30-test_evp_data/
Devpmd_sm3.txt16 # From https://tools.ietf.org/html/draft-shen-sm2-ecdsa-02
/third_party/ltp/testcases/network/stress/ssh/
Dssh-stress.sh65 ssh-keygen -q -N "" -t ecdsa -f $TST_TMPDIR/ssh_host_ecdsa_key
/third_party/openssl/doc/man3/
DSSL_CTX_config.pod50 ECDSA.Certificate = server-ecdsa.pem
/third_party/node/deps/npm/docs/content/commands/
Dnpm-audit.md70 "keytype": "ecdsa-sha2-nistp256",
71 "scheme": "ecdsa-sha2-nistp256",
81 - `keytype`: only `ecdsa-sha2-nistp256` is currently supported by the npm CLI
82 - `scheme`: only `ecdsa-sha2-nistp256` is currently supported by the npm CLI

123