UNPKG

@microsoft/useragent-sdk

Version:

SDK for building decentralized identity wallets and enterprise agents.

30 lines (27 loc) 836 B
/*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ import PublicKey from '../../../keys/PublicKey'; /** * Verified and decrypted JOSE response * @interface */ export default interface VerifiedResponse { /** * Fully qualified key id of the local key */ readonly localKeyId: string; /** * Responders PublicKey */ readonly responderPublicKey: PublicKey; /** * Response Nonce */ readonly nonce: string; /** * Plaintext of the response */ response: string; }