@microsoft/useragent-sdk
Version:
SDK for building decentralized identity wallets and enterprise agents.
41 lines • 1.23 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 {
}
/**
* 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';
exports.default = W3cCryptoApiConstants;
//# sourceMappingURL=W3cCryptoApiConstants.js.map