@microsoft/useragent-sdk
Version:
SDK for building decentralized identity wallets and enterprise agents.
14 lines (12 loc) • 540 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 JsonWebKey from './JsonWebKey';
/**
* Represents an OCT key
* @class
* @extends JsonWebKey
*/
export default abstract class SecretKey extends JsonWebKey {
}