Fix JWK kty error for symmetric keys

This commit is contained in:
microshine 2019-02-17 10:35:26 +03:00
parent b18cd6d0af
commit 72a30966a1
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ export class CryptoKey extends core.CryptoKey {
public usages: KeyUsage[] = [];
@JsonProp({ type: JsonPropTypes.String })
protected kty: string = "";
protected kty: string = "octet";
@JsonProp({ type: JsonPropTypes.String })
protected alg: string = "";