UNPKG

@microsoft/useragent-sdk

Version:

SDK for building decentralized identity wallets and enterprise agents.

24 lines (23 loc) 496 B
import PublicKey from '../../../keys/PublicKey'; /** * Verified and decrypted JOSE request * @interface */ export default interface VerifiedRequest { /** * Fully qualified key id of the local key */ readonly localKeyId: string; /** * Requesters PublicKey */ readonly requesterPublicKey: PublicKey; /** * Request Nonce */ readonly nonce: string; /** * Plaintext of the request */ request: string; }