@vaharoni/devops 1.2.9 → 1.2.10
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { encryptAes256Gcm
|
|
1
|
+
export { encryptAes256Gcm, decryptAes256Gcm } from "./aes";
|
|
2
2
|
/**
|
|
3
3
|
* A simple token generation/verification class that relies on the subject field of an internal JWT-like token. It can:
|
|
4
4
|
* - generate a short-lived (60s) token with the given subject
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/app-support/crypto/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,gBAAgB,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/app-support/crypto/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,gBAAgB,EAAE,gBAAgB,EAAE,MAAM,OAAO,CAAC;AAE3D;;;;;;GAMG;AACH,qBAAa,aAAa;IACL,OAAO,EAAE,MAAM;gBAAf,OAAO,EAAE,MAAM;IAElC,QAAQ;IAIR,aAAa,CAAC,KAAK,EAAE,MAAM;IAO3B,uBAAuB,CAAC,mBAAmB,CAAC,EAAE,MAAM,GAAG,IAAI;CAO5D"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { generateInternalAuthToken, parseInternalAuthTokenOrThrow } from "./internal-token";
|
|
2
|
-
export { encryptAes256Gcm
|
|
2
|
+
export { encryptAes256Gcm, decryptAes256Gcm } from "./aes";
|
|
3
3
|
/**
|
|
4
4
|
* A simple token generation/verification class that relies on the subject field of an internal JWT-like token. It can:
|
|
5
5
|
* - generate a short-lived (60s) token with the given subject
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { generateInternalAuthToken, parseInternalAuthTokenOrThrow } from "./internal-token";
|
|
2
|
-
export { encryptAes256Gcm
|
|
2
|
+
export { encryptAes256Gcm, decryptAes256Gcm } from "./aes";
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* A simple token generation/verification class that relies on the subject field of an internal JWT-like token. It can:
|