# MlDsa44.engine

Compiles WASM implementations of selected [`MlDsa44`](/api/MlDsa44) primitives, without installing them.

Random key generation remains on Ox's host-backed default implementation.

## Imports

:::code-group
```ts [Named]
import { MlDsa44 } from 'ox/wasm'
```

```ts [Entrypoint]
import * as MlDsa44 from 'ox/wasm/MlDsa44'
```
:::

## Examples

```ts twoslash
// @noErrors
import { Engine } from 'ox'
import { MlDsa44 } from 'ox/wasm'

await Engine.install({ MlDsa44: MlDsa44.engine() })

MlDsa44.getPublicKey({ privateKey: '0x...' })
```

## Definition

```ts
function engine(): Promise<engine.ReturnType>
```

**Source:** [src/wasm/MlDsa44.ts](https://github.com/wevm/ox/blob/main/src/wasm/MlDsa44.ts#L34)

## Return Type

The WASM implementation of part of the `MlDsa44` slot.

`Promise<engine.ReturnType>`
