@stryke/crypto 0.4.0 → 0.4.2

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/base-64.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * Encodes a Uint8Array into a Base64 encoded Uint8Array.
3
3
  *
4
- * @credits https://github.com/hi-ogawa/js-utils
4
+ * @credit https://github.com/hi-ogawa/js-utils
5
5
  *
6
6
  * @param input - The input Uint8Array or string to encode.
7
7
  * @returns The Base64 encoded Uint8Array.
@@ -10,7 +10,7 @@ export declare function encodeBase64(input: Uint8Array | string): string;
10
10
  /**
11
11
  * Decodes a Base64 encoded Uint8Array into a Uint8Array.
12
12
  *
13
- * @credits https://github.com/hi-ogawa/js-utils
13
+ * @credit https://github.com/hi-ogawa/js-utils
14
14
  *
15
15
  * @param input - The Base64 encoded Uint8Array or string to decode.
16
16
  * @returns The decoded Uint8Array.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stryke/crypto",
3
- "version": "0.4.0",
3
+ "version": "0.4.2",
4
4
  "type": "module",
5
5
  "description": "A package containing cryptographic utilities used by Storm Software.",
6
6
  "repository": {
@@ -112,5 +112,5 @@
112
112
  "main": "./dist/index.cjs",
113
113
  "module": "./dist/index.mjs",
114
114
  "types": "./dist/index.d.ts",
115
- "gitHead": "7331a32032c42269626a48f5011938b82dc80c45"
115
+ "gitHead": "4cae447b5b6f7d1f4df93639090da46230f3b539"
116
116
  }