Lines Matching refs:algorithm
419 const algorithm = {
426 const bits = await subtle.deriveBits(algorithm, baseKeys[size], 256);
440 const algorithm = {
449 subtle.deriveBits(algorithm, baseKeys[size], undefined), {
453 subtle.deriveBits(algorithm, baseKeys[size], 0), {
458 subtle.deriveBits(algorithm, baseKeys[size], null), {
463 subtle.deriveBits(algorithm, baseKeys[size], 15), {
477 const algorithm = { name: 'PBKDF2', salt, iterations };
483 ...algorithm,
486 message: /Unrecognized algorithm name/,
492 ...algorithm,
496 message: /Unrecognized algorithm name/,
508 const algorithm = {
516 subtle.deriveBits(algorithm, noBits[size], 256), {
530 const algorithm = {
538 algorithm,
561 const algorithm = { name: 'PBKDF2', salt, iterations };
567 ...algorithm,
575 message: /Unrecognized algorithm name/,
581 ...algorithm,
589 message: /Unrecognized algorithm name/,
603 const algorithm = {
611 subtle.deriveKey(algorithm, noKey[size], keyType, true, usages), {
624 const algorithm = {
632 subtle.deriveKey(algorithm, wrongKey, keyType, true, usages), {
633 message: /Key algorithm mismatch/,