verifiablecredentials-crypto-sdk-typescript-keys
Version:
Package for managing keys in the DID space.
14 lines (12 loc) • 527 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 {
}