Home
last modified time | relevance | path

Searched refs:getHashes (Results 1 – 10 of 10) sorted by relevance

/third_party/node/test/parallel/
Dtest-crypto.js135 assert.notStrictEqual(crypto.getHashes().length, 0);
136 assert(crypto.getHashes().includes('sha1'));
137 assert(crypto.getHashes().includes('sha256'));
138 assert(!crypto.getHashes().includes('SHA1'));
139 assert(!crypto.getHashes().includes('SHA256'));
140 assert(crypto.getHashes().includes('RSA-SHA1'));
141 assert(!crypto.getHashes().includes('rsa-sha1'));
142 validateList(crypto.getHashes());
161 testImmutability(crypto.getHashes);
Dtest-crypto-dh.js264 const availableHashes = new Set(crypto.getHashes());
/third_party/node/lib/internal/crypto/
Dutil.js10 getHashes: _getHashes,
60 const getHashes = cachedResult(() => filterDuplicateStrings(_getHashes())); constant
98 getHashes, property
/third_party/node/lib/
Dcrypto.js105 getHashes,
175 getHashes, property
/third_party/node/deps/npm/node_modules/ssri/
Dindex.js379 const NODE_HASHES = new Set(crypto.getHashes())
DREADME.md307 in `crypto.getHashes()` for the host Node.js platform.
/third_party/node/deps/npm/node_modules/cacache/
DREADME.md414 for inserted data. Can use any algorithm listed in `crypto.getHashes()` or
566 `crypto.getHashes()` to see which ones you can use.
DREADME.es.md410 enumerado en `crypto.getHashes()`.
548 Puedes usar `crypto.getHashes()` para ver cuales están disponibles.
/third_party/node/doc/api/
Dcrypto.md2091 [`crypto.getHashes()`][] to obtain the names of the available digest algorithms.
2110 Use [`crypto.getHashes()`][] to obtain an array of names of the available
2343 ### `crypto.getHashes()`
2352 const hashes = crypto.getHashes();
2429 [`crypto.getHashes()`][].
2496 [`crypto.getHashes()`][].
3631 [`crypto.getHashes()`]: #crypto_crypto_gethashes
/third_party/node/doc/changelogs/
DCHANGELOG_ARCHIVE.md831 * crypto: add getHashes() and getCiphers() (Ben Noordhuis)