Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/girkovarpa/hutton-typescript
- Owner: GirkovArpa
- License: unlicense
- Created: 2020-08-10T07:30:59.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-08-12T02:58:22.000Z (over 4 years ago)
- Last Synced: 2025-01-16T23:08:10.277Z (29 days ago)
- Topics: cipher, encryption, functional-programming, hutton, typescript
- Language: TypeScript
- Homepage: https://hutton-cipher.netlify.app/
- Size: 11.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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'
);
```