https://github.com/hugoalh/blake-es
An ECMAScript (JavaScript & TypeScript) module to get the non-cryptographic hash of the data with algorithm Blake.
https://github.com/hugoalh/blake-es
blake blake2b blake2s ecmascript ecmascript-module es es-module esm esmodule hash javascript js ts typescript
Last synced: about 1 month ago
JSON representation
An ECMAScript (JavaScript & TypeScript) module to get the non-cryptographic hash of the data with algorithm Blake.
- Host: GitHub
- URL: https://github.com/hugoalh/blake-es
- Owner: hugoalh
- License: other
- Created: 2025-07-22T09:57:00.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2025-08-29T09:47:51.000Z (about 2 months ago)
- Last Synced: 2025-09-05T12:55:13.432Z (about 1 month ago)
- Topics: blake, blake2b, blake2s, ecmascript, ecmascript-module, es, es-module, esm, esmodule, hash, javascript, js, ts, typescript
- Language: TypeScript
- Homepage:
- Size: 439 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
- Citation: CITATION.cff
- Codeowners: .github/CODEOWNERS
- Security: SECURITY.md
Awesome Lists containing this project
README
# Blake (ES)
[**⚖️** MIT](./LICENSE.md)
[](https://github.com/hugoalh/blake-es)
[](https://jsr.io/@hugoalh/blake)
[](https://www.npmjs.com/package/@hugoalh/blake)An ECMAScript (JavaScript & TypeScript) module to get the non-cryptographic hash of the data with algorithm Blake.
## 🌟 Features
- Support custom output length.
- Support variants of 2B and 2S.## 🔰 Begin
### 🎯 Targets
| **Targets** | **Remote** | **JSR** | **NPM** |
|:--|:-:|:-:|:-:|
| **[Bun](https://bun.sh/)** >= v1.1.0 | ❌ | ✔️ | ✔️ |
| **[Deno](https://deno.land/)** >= v2.1.0 | ✔️ | ✔️ | ✔️ |
| **[NodeJS](https://nodejs.org/)** >= v20.9.0 | ❌ | ✔️ | ✔️ |> [!NOTE]
> - It is possible to use this module in other methods/ways which not listed in here, however those methods/ways are not officially supported, and should beware maybe cause security issues.### #️⃣ Resources Identifier
- **Remote - GitHub Raw:**
```
https://raw.githubusercontent.com/hugoalh/blake-es/{Tag}/mod.ts
```
- **JSR:**
```
[jsr:]@hugoalh/blake[@{Tag}]
```
- **NPM:**
```
[npm:]@hugoalh/blake[@{Tag}]
```> [!NOTE]
> - For usage of remote resources, it is recommended to import the entire module with the main path `mod.ts`, however it is also able to import part of the module with sub path if available, but do not import if:
>
> - it's path has an underscore prefix (e.g.: `_foo.ts`, `_util/bar.ts`), or
> - it is a benchmark or test file (e.g.: `foo.bench.ts`, `foo.test.ts`), or
> - it's symbol has an underscore prefix (e.g.: `_bar`, `_foo`).
>
> These elements are not considered part of the public API, thus no stability is guaranteed for them.
> - For usage of JSR or NPM resources, it is recommended to import the entire module with the main entrypoint, however it is also able to import part of the module with sub entrypoint if available, please visit the [file `jsr.jsonc`](./jsr.jsonc) property `exports` for available sub entrypoints.
> - It is recommended to use this module with tag for immutability.### 🛡️ Runtime Permissions
*This module does not request any runtime permission.*
## 🧩 APIs
- ```ts
class Blake2B {
constructor(input?: Blake2BOptions);
get freezed(): boolean;
get length(): number;
freeze(): this;
hash(): Uint8Array;
hashHex(): string;
update(data: Blake2AcceptDataType): this;
updateFromStream(stream: ReadableStream): Promise;
}
```
- ```ts
class Blake2S {
constructor(input?: Blake2Options);
get freezed(): boolean;
get length(): number;
freeze(): this;
hash(): Uint8Array;
hashHex(): string;
update(data: Blake2AcceptDataType): this;
updateFromStream(stream: ReadableStream): Promise;
}
```
- ```ts
interface Blake2Options {
data?: Blake2AcceptDataType;
key?: Uint8Array;
length?: number;
}
```
- ```ts
interface Blake2BOptions extends Blake2Options {
personal?: string | Uint8Array;
salt?: string | Uint8Array;
}
```
- ```ts
type Blake2AcceptDataType =
| string
| Uint8Array;
```> [!NOTE]
> - For the full or prettier documentation, can visit via:
> - [Deno CLI `deno doc`](https://docs.deno.com/runtime/reference/cli/documentation_generator/)
> - [JSR](https://jsr.io/@hugoalh/blake)## ✍️ Examples
- ```ts
new Blake2B("The quick brown fox jumps over the lazy dog").hashHex();
//=> "A8ADD4BDDDFD93E4877D2746E62817B116364A1FA7BC148D95090BC7333B3673F82401CF7AA2E4CB1ECD90296E3F14CB5413F8ED77BE73045B13914CDCD6A918"
```