Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 306 Bytes

README.md

File metadata and controls

13 lines (9 loc) · 306 Bytes

Hutton Cipher

The Hutton cipher of EricBondHutton, written in TypeScript in a functional style.

Usage

import { encrypt } from 'https://deno.land/x/hutton/mod.ts';

console.log(
  encrypt('helloworld', 'foo', 'bar'); // 'pwckfenttc'
);