ethers.js/src.ts/utils/hmac.ts

19 lines
657 B
TypeScript
Raw Normal View History

2018-06-13 22:39:39 +03:00
'use strict';
2018-06-19 09:12:57 +03:00
import { createHmac } from 'crypto';
2018-06-13 22:39:39 +03:00
import { arrayify } from './bytes';
2018-06-13 22:39:39 +03:00
import { Arrayish, SupportedAlgorithms } from './types';
2018-06-13 22:39:39 +03:00
import * as errors from './errors';
2018-06-19 09:12:57 +03:00
const supportedAlgorithms = { sha256: true, sha512: true };
export function computeHmac(algorithm: SupportedAlgorithms, key: Arrayish, data: Arrayish): Uint8Array {
2018-06-19 09:12:57 +03:00
if (!supportedAlgorithms[algorithm]) {
errors.throwError('unsupported algorithm ' + algorithm, errors.UNSUPPORTED_OPERATION, { operation: 'hmac', algorithm: algorithm });
}
return arrayify(createHmac(algorithm, new Buffer(arrayify(key))).update(new Buffer(arrayify(data))).digest());
2018-06-13 22:39:39 +03:00
}