2018-06-19 09:14:06 +03:00
|
|
|
|
|
|
|
import * as hash from 'hash.js';
|
|
|
|
|
2018-07-23 01:25:36 +03:00
|
|
|
import { arrayify } from '../utils/bytes';
|
2018-06-19 09:14:06 +03:00
|
|
|
|
2018-07-23 01:25:36 +03:00
|
|
|
import * as errors from '../utils/errors';
|
2018-06-19 09:14:06 +03:00
|
|
|
|
2018-07-31 01:59:52 +03:00
|
|
|
///////////////////////////////
|
|
|
|
// Imported Types
|
|
|
|
|
|
|
|
import { Arrayish } from '../utils/bytes';
|
|
|
|
|
|
|
|
///////////////////////////////
|
|
|
|
|
2018-08-02 00:33:23 +03:00
|
|
|
export enum SupportedAlgorithms { sha256 = 'sha256', sha512 = 'sha512' };
|
2018-07-31 01:59:52 +03:00
|
|
|
|
2018-06-23 03:30:50 +03:00
|
|
|
export function computeHmac(algorithm: SupportedAlgorithms, key: Arrayish, data: Arrayish): Uint8Array {
|
2018-08-02 00:33:23 +03:00
|
|
|
if (!SupportedAlgorithms[algorithm]) {
|
2018-06-19 09:14:06 +03:00
|
|
|
errors.throwError('unsupported algorithm ' + algorithm, errors.UNSUPPORTED_OPERATION, { operation: 'hmac', algorithm: algorithm });
|
|
|
|
}
|
|
|
|
|
|
|
|
return arrayify(
|
2018-06-23 03:30:50 +03:00
|
|
|
hash.hmac(hash[algorithm], arrayify(key)).update(arrayify(data)).digest()
|
2018-06-19 09:14:06 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|