Home
last modified time | relevance | path

Searched refs:createVerify (Results 1 – 19 of 19) sorted by relevance

/third_party/node/test/parallel/
Dtest-crypto-sign-verify.js72 () => crypto.createVerify('SHA256').verify({
83 () => crypto.createVerify('SHA256').verify({
103 const verified = crypto.createVerify('SHA1')
119 let verified = crypto.createVerify('SHA256')
125 const verStream = crypto.createVerify('SHA256');
137 let verified = crypto.createVerify('SHA1')
143 const verStream = crypto.createVerify('SHA1');
225 verified = crypto.createVerify(algo)
243 verified = crypto.createVerify(algo)
259 verified = crypto.createVerify(algo)
[all …]
Dtest-crypto-rsa-dsa.js255 let rsaVerify = crypto.createVerify('SHA1');
277 rsaVerify = crypto.createVerify('SHA1');
288 rsaVerify = crypto.createVerify('SHA1');
319 const verify = crypto.createVerify('SHA256');
331 const verify2 = crypto.createVerify('SHA256');
350 const verify = crypto.createVerify('SHA1');
360 const verify2 = crypto.createVerify('DSS1');
379 const verify = crypto.createVerify('SHA1');
407 const verify = crypto.createVerify('SHA1');
Dtest-crypto-binary-default.js436 const s1Verified = crypto.createVerify('SHA1')
445 const s2Verified = crypto.createVerify('SHA256')
454 const s3Verified = crypto.createVerify('SHA1')
621 const rsaVerify = crypto.createVerify('SHA1');
657 const verify = crypto.createVerify('SHA256');
679 const verify = crypto.createVerify('SHA1');
Dtest-crypto-key-objects.js12 createVerify,
353 const okay = createVerify(algo)
409 const okay = createVerify('sha256')
455 const okay = createVerify('sha512')
Dtest-crypto-update-encoding.js18 const verify = () => crypto.createVerify('sha256');
Dtest-crypto-verify-failure.js49 crypto.createVerify('SHA1')
Dtest-crypto-keygen.js11 createVerify,
53 return createVerify(algo).update(data).verify(key, signature);
/third_party/node/deps/npm/node_modules/sshpk/lib/
Dkey.js146 Key.prototype.createVerify = function (hashAlgo) { method in Key
161 v = crypto.createVerify(nm);
169 v = crypto.createVerify(nm);
Dprivate-key.js133 PrivateKey.prototype.createVerify = function (hashAlgo) { method in PrivateKey
134 return (this.toPublic().createVerify(hashAlgo));
/third_party/node/lib/
Dcrypto.js153 function createVerify(algorithm, options) { function
170 createVerify, property
/third_party/node/benchmark/crypto/
Drsa-sign-verify-throughput.js39 const v = crypto.createVerify(algo);
/third_party/node/deps/npm/node_modules/http-signature/lib/
Dverify.js37 var v = pubkey.createVerify(alg[1]);
/third_party/node/deps/npm/node_modules/sshpk/bin/
Dsshpk-verify112 verifier = key.createVerify(hash);
/third_party/node/deps/npm/node_modules/sshpk/
DREADME.md90 var v = key.createVerify('sha1');
186 ### `Key#createVerify([hashAlgorithm])`
302 ### `PrivateKey#createVerify([hashAlgorithm])`
304 Same as `this.toPublic().createVerify()`.
385 `Key#createVerify()` and it will automatically be converted internally into the
/third_party/jsframework/runtime/main/extend/systemplugin/napi/
Dohos_security_cryptoFramework.js727 createVerify: function (...args) { method
/third_party/node/deps/npm/node_modules/sshpk/lib/formats/
Dx509.js50 var verifier = key.createVerify(algParts[1]);
/third_party/node/doc/api/
Dcrypto.md1382 const verify = crypto.createVerify('SHA256');
1403 const verify = crypto.createVerify('SHA256');
1503 The [`crypto.createVerify()`][] method is used to create `Verify` instances.
2100 ### `crypto.createVerify(algorithm[, options])`
3628 [`crypto.createVerify()`]: #crypto_crypto_createverify_algorithm_options
/third_party/node/doc/changelogs/
DCHANGELOG_V13.md353 ….com/nodejs/node/commit/d0e94fc77e)] - **crypto**: fix ieee-p1363 for createVerify (Tobias Nießen)…
DCHANGELOG_V12.md116 ….com/nodejs/node/commit/c6bbae44a9)] - **crypto**: fix ieee-p1363 for createVerify (Tobias Nießen)…