diff --git a/src/crypto/crypto.js b/src/crypto/crypto.js index 35bf0bb0..088d0b15 100644 --- a/src/crypto/crypto.js +++ b/src/crypto/crypto.js @@ -468,3 +468,20 @@ function checkSupportedCurve(oid) { throw new UnsupportedError('Unknown curve OID'); } } + +/** + * Get preferred hash algo for a given elliptic algo + * @param {module:enums.publicKey} algo - alrogithm identifier + * @param {module:type/oid} [oid] - curve OID if needed by algo + */ +export function getPreferredCurveHashAlgo(algo, oid) { + switch (algo) { + case enums.publicKey.ecdsa: + case enums.publicKey.eddsaLegacy: + return publicKey.elliptic.getPreferredHashAlgo(oid); + case enums.publicKey.ed25519: + return enums.hash.sha256; + default: + throw new Error('Unknown elliptic signing algo'); + } +} diff --git a/src/key/helper.js b/src/key/helper.js index 5eb7f442..35a01e10 100644 --- a/src/key/helper.js +++ b/src/key/helper.js @@ -5,8 +5,6 @@ */ import { - PublicKeyPacket, - PublicSubkeyPacket, SecretKeyPacket, SecretSubkeyPacket, SignaturePacket @@ -129,17 +127,11 @@ export async function getPreferredHashAlgo(key, keyPacket, date = new Date(), us prefAlgo : hashAlgo; } } - switch (Object.getPrototypeOf(keyPacket)) { - case SecretKeyPacket.prototype: - case PublicKeyPacket.prototype: - case SecretSubkeyPacket.prototype: - case PublicSubkeyPacket.prototype: - switch (keyPacket.algorithm) { - case enums.publicKey.ecdh: - case enums.publicKey.ecdsa: - case enums.publicKey.eddsaLegacy: - prefAlgo = crypto.publicKey.elliptic.getPreferredHashAlgo(keyPacket.publicParams.oid); - } + switch (keyPacket.algorithm) { + case enums.publicKey.ecdsa: + case enums.publicKey.eddsaLegacy: + case enums.publicKey.ed25519: + prefAlgo = crypto.getPreferredCurveHashAlgo(keyPacket.algorithm, keyPacket.publicParams.oid); } return crypto.hash.getHashByteLength(hashAlgo) <= crypto.hash.getHashByteLength(prefAlgo) ? prefAlgo : hashAlgo;