Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/girkovarpa/hutton-typescript

The Hutton cipher implemented in TypeScript.
https://github.com/girkovarpa/hutton-typescript

cipher encryption functional-programming hutton typescript

Last synced: 22 days ago
JSON representation

The Hutton cipher implemented in TypeScript.

Awesome Lists containing this project

README

        

# Hutton Cipher

The Hutton cipher of [EricBondHutton](https://old.reddit.com/user/ericbondhutton), written in TypeScript in a functional style.

## Usage

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

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