Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

MandarineSecurity.Crypto.PasswordEncoder

import type { MandarineSecurity } from "https://raw.githubusercontent.com/mandarineorg/mandarinets/master/mod.ts"; 

const { PasswordEncoder } = MandarineSecurity.Crypto;
interface PasswordEncoder {
encode: (rawPassword: string) => string;
matches: (rawPassword: string, encodedPassword: string) => boolean;
}

§Properties

§
encode: (rawPassword: string) => string
[src]
§
matches: (rawPassword: string, encodedPassword: string) => boolean
[src]