Searched refs:getHashes (Results 1 – 11 of 11) sorted by relevance
/third_party/node/test/parallel/ |
D | test-crypto.js | 148 assert.notStrictEqual(crypto.getHashes().length, 0); 149 assert(crypto.getHashes().includes('sha1')); 150 assert(crypto.getHashes().includes('sha256')); 151 assert(!crypto.getHashes().includes('SHA1')); 152 assert(!crypto.getHashes().includes('SHA256')); 153 assert(crypto.getHashes().includes('RSA-SHA1')); 154 assert(!crypto.getHashes().includes('rsa-sha1')); 155 validateList(crypto.getHashes()); 157 for (const algo of crypto.getHashes()) 177 testImmutability(crypto.getHashes);
|
D | test-crypto-hkdf.js | 14 getHashes 220 getHashes()
|
D | test-crypto-pbkdf2.js | 224 crypto.getHashes()
|
D | test-crypto-dh-curves.js | 23 const availableHashes = new Set(crypto.getHashes());
|
/third_party/node/test/addons/openssl-providers/ |
D | providers.cjs | 10 const { createHash, getCiphers, getHashes } = require('node:crypto'); 56 assertArrayIncludes(getHashes(), hash, 'Available hashes'); 70 assertArrayDoesNotInclude(getHashes(), hash, 'Available hashes');
|
/third_party/node/lib/internal/crypto/ |
D | util.js | 29 getHashes: _getHashes, 101 const getHashes = cachedResult(() => filterDuplicateStrings(_getHashes())); constant 564 getHashes, property
|
/third_party/node/lib/ |
D | crypto.js | 117 getHashes, 199 getHashes, property
|
/third_party/node/deps/undici/src/lib/fetch/ |
D | util.js | 592 const supportedHashes = crypto.getHashes()
|
/third_party/node/deps/npm/node_modules/ssri/lib/ |
D | index.js | 563 const NODE_HASHES = crypto.getHashes()
|
/third_party/node/doc/api/ |
D | crypto.md | 3592 [`crypto.getHashes()`][] to obtain the names of the available digest algorithms. 3612 Use [`crypto.getHashes()`][] to obtain an array of names of the available 4200 ### `crypto.getHashes()` 4211 getHashes, 4214 console.log(getHashes()); // ['DSA', 'DSA-SHA', 'DSA-SHA1', ...] 4219 getHashes, 4222 console.log(getHashes()); // ['DSA', 'DSA-SHA', 'DSA-SHA1', ...] 4437 [`crypto.getHashes()`][]. 4506 [`crypto.getHashes()`][]. 6146 [`crypto.getHashes()`]: #cryptogethashes
|
/third_party/node/doc/changelogs/ |
D | CHANGELOG_ARCHIVE.md | 858 * crypto: add getHashes() and getCiphers() (Ben Noordhuis)
|