UNPKG

@microsoft/useragent-sdk

Version:

SDK for building decentralized identity wallets and enterprise agents.

22 lines (17 loc) 676 B
/*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ /** * General constants used by user agent */ export default class UserAgentConstants { /** * Define default key tag for signature key */ public static keyTagSigning = 'sigKey'; /** * Define default key tag for encyption key */ public static keyTagEncryption = 'encKey'; }