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/public_key.ts

49 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";
2020-03-13 11:06:53 +00:00
import * as core from "webcrypto-core";
2019-01-25 10:43:13 +00:00
import { AsymmetricKey } from "../../keys/asymmetric";
import { getOidByNamedCurve } from "./helper";
export class EcPublicKey extends AsymmetricKey implements IJsonConvertible {
public readonly type: "public" = "public";
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.PublicKeyInfo);
return new core.asn1.EcPublicKey(keyInfo.publicKey);
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`);
}
2020-04-06 12:21:38 +00:00
const key = JsonParser.fromJSON(json, { targetSchema: core.asn1.EcPublicKey });
2019-01-25 10:43:13 +00:00
2020-04-06 12:21:38 +00:00
const keyInfo = new core.asn1.PublicKeyInfo();
2019-01-25 10:43:13 +00:00
keyInfo.publicKeyAlgorithm.algorithm = "1.2.840.10045.2.1";
keyInfo.publicKeyAlgorithm.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
);
keyInfo.publicKey = AsnSerializer.toASN(key).valueHex;
this.data = Buffer.from(AsnSerializer.serialize(keyInfo));
return this;
}
}