This repository has been archived on 2023-04-04. You can view files and clone it, but cannot push or open issues or pull requests.
webcrypto/src/mechs/ec/private_key.ts

48 lines
1.5 KiB
TypeScript
Raw Normal View History

2019-01-25 10:43:13 +00:00
import { AsnParser, AsnSerializer } from "@peculiar/asn1-schema";
import { IJsonConvertible, JsonParser, JsonSerializer } from "@peculiar/json-schema";
import * as core from "webcrypto-core";
import { AsymmetricKey } from "../../keys";
import { getOidByNamedCurve } from "./helper";
export class EcPrivateKey extends AsymmetricKey implements IJsonConvertible {
public readonly type: "private" = "private";
2022-03-02 18:35:31 +00:00
public override algorithm!: EcKeyAlgorithm;
2019-01-25 10:43:13 +00:00
public getKey() {
2020-04-06 12:21:38 +00:00
const keyInfo = AsnParser.parse(this.data, core.asn1.PrivateKeyInfo);
return AsnParser.parse(keyInfo.privateKey, core.asn1.EcPrivateKey);
2019-01-25 10:43:13 +00:00
}
public toJSON() {
const key = this.getKey();
const json: JsonWebKey = {
kty: "EC",
crv: this.algorithm.namedCurve,
key_ops: this.usages,
ext: this.extractable,
};
return Object.assign(json, JsonSerializer.toJSON(key));
}
public fromJSON(json: JsonWebKey) {
2020-03-13 11:06:53 +00:00
if (!json.crv) {
throw new core.OperationError(`Cannot get named curve from JWK. Property 'crv' is required`);
2019-01-25 10:43:13 +00:00
}
2020-04-06 12:21:38 +00:00
const keyInfo = new core.asn1.PrivateKeyInfo();
2019-01-25 10:43:13 +00:00
keyInfo.privateKeyAlgorithm.algorithm = "1.2.840.10045.2.1";
keyInfo.privateKeyAlgorithm.parameters = AsnSerializer.serialize(
2020-04-06 12:21:38 +00:00
new core.asn1.ObjectIdentifier(getOidByNamedCurve(json.crv)),
2019-01-25 10:43:13 +00:00
);
2020-04-06 12:21:38 +00:00
const key = JsonParser.fromJSON(json, { targetSchema: core.asn1.EcPrivateKey });
2019-01-25 10:43:13 +00:00
keyInfo.privateKey = AsnSerializer.serialize(key);
this.data = Buffer.from(AsnSerializer.serialize(keyInfo));
return this;
}
}