@microsoft/useragent-sdk
Version:
SDK for building decentralized identity wallets and enterprise agents.
28 lines (22 loc) • 804 B
text/typescript
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import { JweHeader } from "./IJweGeneralJson";
import IJweRecipient from "./IJweRecipient";
/**
* JWS signature used by the general JSON
*/
export default class JweRecipient implements IJweRecipient {
/**
* The unprotected (unverified) header.
*/
public header?: JweHeader;
/**
* The JWE signature.
*/
public encrypted_key: Buffer
constructor() {
this.encrypted_key = Buffer.from('');
}
}