Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/hugoalh/fnv-es

An ES (JavaScript & TypeScript) module to get the non-cryptographic hash of the data with algorithm Fowler-Noll-Vo (FNV).
https://github.com/hugoalh/fnv-es

es fnv fowler-noll-vo hash javascript js modulejs ts typescript

Last synced: 18 days ago
JSON representation

An ES (JavaScript & TypeScript) module to get the non-cryptographic hash of the data with algorithm Fowler-Noll-Vo (FNV).

Awesome Lists containing this project

README

        

# Fowler-Noll-Vo (FNV) (ES)

[**โš–๏ธ** MIT](./LICENSE.md)

[![GitHub: hugoalh/fnv-es](https://img.shields.io/github/v/release/hugoalh/fnv-es?label=hugoalh/fnv-es&labelColor=181717&logo=github&logoColor=ffffff&sort=semver&style=flat "GitHub: hugoalh/fnv-es")](https://github.com/hugoalh/fnv-es)
[![JSR: @hugoalh/fnv](https://img.shields.io/jsr/v/@hugoalh/fnv?label=@hugoalh/fnv&labelColor=F7DF1E&logo=jsr&logoColor=000000&style=flat "JSR: @hugoalh/fnv")](https://jsr.io/@hugoalh/fnv)
[![NPM: @hugoalh/fnv](https://img.shields.io/npm/v/@hugoalh/fnv?label=@hugoalh/fnv&labelColor=CB3837&logo=npm&logoColor=ffffff&style=flat "NPM: @hugoalh/fnv")](https://www.npmjs.com/package/@hugoalh/fnv)

An ES (JavaScript & TypeScript) module to get the non-cryptographic hash of the data with algorithm Fowler-Noll-Vo (FNV).

Currently supported variants of 0, 1, and 1a, and bits size of 32, 64, 128, 256, 512, and 1024.

## ๐Ÿ”ฐ Begin

### ๐ŸŽฏ Targets

| | **Remote** | **JSR** | **NPM** |
|:--|:--|:--|:--|
| **[Bun](https://bun.sh/)** >= v1.1.0 | โŒ | โ“ | โœ”๏ธ |
| **[Cloudflare Workers](https://workers.cloudflare.com/)** | โŒ | โ“ | โœ”๏ธ |
| **[Deno](https://deno.land/)** >= v1.42.0 | โœ”๏ธ | โœ”๏ธ | โœ”๏ธ |
| **[NodeJS](https://nodejs.org/)** >= v16.13.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/fnv-es/{Tag}/mod.ts
```
- **JSR:**
```
[jsr:]@hugoalh/fnv[@{Tag}]
```
- **NPM:**
```
[npm:]@hugoalh/fnv[@{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

- File System - Read \[Deno: `read`; NodeJS (>= v20.9.0) ๐Ÿงช: `fs-read`\]
- *Resources* (Optional)

## ๐Ÿงฉ APIs

- ```ts
class FNV0 {
constructor(size: FNVBitsSize, data?: FNVAcceptDataType);
get freezed(): boolean;
get size(): FNVBitsSize;
freeze(): this;
hash(): bigint;
hashBase16(): string;
hashBase32Hex(): string;
hashBase36(): string;
hashBigInt(): bigint;
hashHex(): string;
hashHexPadding(): string;
update(data: FNVAcceptDataType): this;
static fromStream(size: FNVBitsSize, stream: ReadableStream): Promise;
}
```
- ```ts
class FNV1 {
constructor(size: FNVBitsSize, data?: FNVAcceptDataType);
get freezed(): boolean;
get size(): FNVBitsSize;
freeze(): this;
hash(): bigint;
hashBase16(): string;
hashBase32Hex(): string;
hashBase36(): string;
hashBigInt(): bigint;
hashHex(): string;
hashHexPadding(): string;
update(data: FNVAcceptDataType): this;
static fromStream(size: FNVBitsSize, stream: ReadableStream): Promise;
}
```
- ```ts
class FNV1a {
constructor(size: FNVBitsSize, data?: FNVAcceptDataType);
get freezed(): boolean;
get size(): FNVBitsSize;
freeze(): this;
hash(): bigint;
hashBase16(): string;
hashBase32Hex(): string;
hashBase36(): string;
hashBigInt(): bigint;
hashHex(): string;
hashHexPadding(): string;
update(data: FNVAcceptDataType): this;
static fromStream(size: FNVBitsSize, stream: ReadableStream): Promise;
}
```
- ```ts
type FNVAcceptDataType = string | BigUint64Array | Uint8Array | Uint16Array | Uint32Array;
```
- ```ts
type FNVBitsSize = 32 | 64 | 128 | 256 | 512 | 1024;
```

> [!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/fnv)

## โœ๏ธ Examples

- ```ts
new FNV1(32, "hello").hashHexPadding();
//=> "4F9F2CAB"
```