verifiablecredentials-crypto-sdk-typescript-keys
Version:
Package for managing keys in the DID space.
41 lines • 1.19 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
/**
* Class for W3C Crypto API constants
*/
class W3cCryptoApiConstants {
}
exports.default = W3cCryptoApiConstants;
/**
* Define W3C JWK constants
*/
W3cCryptoApiConstants.Jwk = 'jwk';
/**
* Define W3C algorithm constants
*/
W3cCryptoApiConstants.RsaOaep = 'RSA-OAEP-256';
/**
* Define W3C algorithm constants
*/
W3cCryptoApiConstants.RsaSsaPkcs1V15 = 'RSASSA-PKCS1-v1_5';
/**
* Define W3C algorithm constants
*/
W3cCryptoApiConstants.Sha256 = 'SHA-256';
/**
* Define W3C algorithm constants
*/
W3cCryptoApiConstants.Sha512 = 'SHA-512';
/**
* Define W3C algorithm constants
*/
W3cCryptoApiConstants.AesGcm = 'AES-GCM';
/**
* Define W3C algorithm constants
*/
W3cCryptoApiConstants.Hmac = 'HMAC';
//# sourceMappingURL=W3cCryptoApiConstants.js.map
;