22 lines
710 B
TypeScript
22 lines
710 B
TypeScript
'use strict';
|
|
|
|
import { createHmac } from 'crypto';
|
|
|
|
import { arrayify } from './bytes';
|
|
|
|
// Imported Types
|
|
import { Arrayish } from './bytes';
|
|
|
|
import * as errors from './errors';
|
|
|
|
export type SupportedAlgorithms = 'sha256' | 'sha512';
|
|
|
|
const supportedAlgorithms = { sha256: true, sha512: true };
|
|
export function computeHmac(algorithm: SupportedAlgorithms, key: Arrayish, data: Arrayish): Uint8Array {
|
|
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());
|
|
}
|
|
|