@hpke/dhkem-x448
Version:
A Hybrid Public Key Encryption (HPKE) module extension for X448
19 lines (18 loc) • 709 B
JavaScript
import { HkdfSha512Native, hmac, sha512, toArrayBuffer } from "@hpke/common";
export class HkdfSha512 extends HkdfSha512Native {
async extract(salt, ikm) {
await this._setup();
const saltBuf = salt.byteLength === 0
? new ArrayBuffer(this.hashSize)
: toArrayBuffer(salt);
const ikmBuf = toArrayBuffer(ikm);
if (saltBuf.byteLength !== this.hashSize) {
return hmac(sha512, new Uint8Array(saltBuf), new Uint8Array(ikmBuf))
.buffer;
}
const key = await this._api.importKey("raw", saltBuf, this.algHash, false, [
"sign",
]);
return await this._api.sign("HMAC", key, ikmBuf);
}
}