@microsoft/useragent-sdk
Version:
SDK for building decentralized identity wallets and enterprise agents.
24 lines (23 loc) • 501 B
TypeScript
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;
}