# Hash

Node.js implementations of Ox's supported hash primitives.

## Examples

```ts twoslash
// @noErrors
import { Engine, Hash } from 'ox'
import * as NodeHash from 'ox/node/Hash'

Engine.set(await NodeHash.create())

Hash.sha256('0xdeadbeef')
```

## Functions

| Name                | Description                         |
| ------------------- | ----------------------------------- |
| [`Hash.create`](/node/crypto/Hash/create) | Creates Node.js implementations of the [`Hash`](/api/Hash) primitives, without installing them. |
