Skip to main content
Module

x/argon2/native/lib.rs

Argon2 encryption library for Deno
Latest
File
#[macro_use]extern crate serde;
mod command;mod error;
use deno_core::plugin_api::Interface;
#[no_mangle]fn deno_plugin_init(context: &mut dyn Interface) { context.register_op("argon2_hash", command::hash); context.register_op("argon2_verify", command::verify);}