UNPKG

@hazae41/chacha20poly1305

Version:

ChaCha20Poly1305 adapter for WebAssembly and JS implementations

9 lines (8 loc) 193 B
import { None, Option } from "@hazae41/result-and-option"; let global = new None(); export function get() { return global; } export function set(value) { global = Option.wrap(value); }