UNPKG

verifiablecredentials-crypto-sdk-typescript-keys

Version:
14 lines (12 loc) 527 B
/*--------------------------------------------------------------------------------------------- * 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 { }