/*---------------------------------------------------------------------------------------------
 *  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 {
 }
