1
0
mirror of https://github.com/musix-org/musix-oss synced 2025-07-02 02:33:38 +00:00
Files
musix-oss/node_modules/ecdsa-sig-formatter/src/param-bytes-for-alg.js
MatteZ02 50b9bed483 Updated
2019-10-10 16:43:04 +03:00

24 lines
456 B
JavaScript

'use strict';
function getParamSize(keySize) {
var result = ((keySize / 8) | 0) + (keySize % 8 === 0 ? 0 : 1);
return result;
}
var paramBytesForAlg = {
ES256: getParamSize(256),
ES384: getParamSize(384),
ES512: getParamSize(521)
};
function getParamBytesForAlg(alg) {
var paramBytes = paramBytesForAlg[alg];
if (paramBytes) {
return paramBytes;
}
throw new Error('Unknown algorithm "' + alg + '"');
}
module.exports = getParamBytesForAlg;