Skip to content

GirkovArpa/hutton-typescript

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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'
);