Searched refs:getHashes (Results 1 – 10 of 10) sorted by relevance
135 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);
264 const availableHashes = new Set(crypto.getHashes());
10 getHashes: _getHashes,60 const getHashes = cachedResult(() => filterDuplicateStrings(_getHashes())); constant98 getHashes, property
105 getHashes,175 getHashes, property
379 const NODE_HASHES = new Set(crypto.getHashes())
307 in `crypto.getHashes()` for the host Node.js platform.
414 for inserted data. Can use any algorithm listed in `crypto.getHashes()` or566 `crypto.getHashes()` to see which ones you can use.
410 enumerado en `crypto.getHashes()`.548 Puedes usar `crypto.getHashes()` para ver cuales están disponibles.
2091 [`crypto.getHashes()`][] to obtain the names of the available digest algorithms.2110 Use [`crypto.getHashes()`][] to obtain an array of names of the available2343 ### `crypto.getHashes()`2352 const hashes = crypto.getHashes();2429 [`crypto.getHashes()`][].2496 [`crypto.getHashes()`][].3631 [`crypto.getHashes()`]: #crypto_crypto_gethashes
831 * crypto: add getHashes() and getCiphers() (Ben Noordhuis)