@sphereon/ssi-sdk.kms-rest-client 0.36.1-feature.integration.fides.68 → 0.36.1-feature.integration.fides.74
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +3 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
- package/src/models/SignatureAlgorithm.ts +3 -0
package/dist/index.d.cts
CHANGED
|
@@ -1914,6 +1914,9 @@ declare const SignatureAlgorithm: {
|
|
|
1914
1914
|
readonly HmacSha256: "HMAC_SHA256";
|
|
1915
1915
|
readonly HmacSha384: "HMAC_SHA384";
|
|
1916
1916
|
readonly HmacSha512: "HMAC_SHA512";
|
|
1917
|
+
readonly RsaSha256: "RSA_SHA256";
|
|
1918
|
+
readonly RsaSha384: "RSA_SHA384";
|
|
1919
|
+
readonly RsaSha512: "RSA_SHA512";
|
|
1917
1920
|
readonly RsaSsaPssSha256Mgf1: "RSA_SSA_PSS_SHA256_MGF1";
|
|
1918
1921
|
readonly RsaSsaPssSha384Mgf1: "RSA_SSA_PSS_SHA384_MGF1";
|
|
1919
1922
|
readonly RsaSsaPssSha512Mgf1: "RSA_SSA_PSS_SHA512_MGF1";
|
package/dist/index.d.ts
CHANGED
|
@@ -1914,6 +1914,9 @@ declare const SignatureAlgorithm: {
|
|
|
1914
1914
|
readonly HmacSha256: "HMAC_SHA256";
|
|
1915
1915
|
readonly HmacSha384: "HMAC_SHA384";
|
|
1916
1916
|
readonly HmacSha512: "HMAC_SHA512";
|
|
1917
|
+
readonly RsaSha256: "RSA_SHA256";
|
|
1918
|
+
readonly RsaSha384: "RSA_SHA384";
|
|
1919
|
+
readonly RsaSha512: "RSA_SHA512";
|
|
1917
1920
|
readonly RsaSsaPssSha256Mgf1: "RSA_SSA_PSS_SHA256_MGF1";
|
|
1918
1921
|
readonly RsaSsaPssSha384Mgf1: "RSA_SSA_PSS_SHA384_MGF1";
|
|
1919
1922
|
readonly RsaSsaPssSha512Mgf1: "RSA_SSA_PSS_SHA512_MGF1";
|
package/dist/index.js
CHANGED
|
@@ -1665,6 +1665,9 @@ var SignatureAlgorithm = {
|
|
|
1665
1665
|
HmacSha256: "HMAC_SHA256",
|
|
1666
1666
|
HmacSha384: "HMAC_SHA384",
|
|
1667
1667
|
HmacSha512: "HMAC_SHA512",
|
|
1668
|
+
RsaSha256: "RSA_SHA256",
|
|
1669
|
+
RsaSha384: "RSA_SHA384",
|
|
1670
|
+
RsaSha512: "RSA_SHA512",
|
|
1668
1671
|
RsaSsaPssSha256Mgf1: "RSA_SSA_PSS_SHA256_MGF1",
|
|
1669
1672
|
RsaSsaPssSha384Mgf1: "RSA_SSA_PSS_SHA384_MGF1",
|
|
1670
1673
|
RsaSsaPssSha512Mgf1: "RSA_SSA_PSS_SHA512_MGF1"
|