Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vdegenne/caesar
caesar cryptographic module
https://github.com/vdegenne/caesar
Last synced: about 2 months ago
JSON representation
caesar cryptographic module
- Host: GitHub
- URL: https://github.com/vdegenne/caesar
- Owner: vdegenne
- Created: 2020-01-15T23:52:59.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T05:15:26.000Z (about 2 years ago)
- Last Synced: 2024-08-11T00:02:29.686Z (5 months ago)
- Language: JavaScript
- Homepage:
- Size: 400 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# @vdegenne/caesar
caesar cryptographic module
# Usage
```javascript
const {encode} = require('@vdegenne/caesar');const string = 'hello';
const offset = 3;console.log(
encode(string, offset) // "khoor"
);
```### esm support
```javascript
import {encode} from '@vdegenne/caesar';
```# Installation
```bash
npm install @vdegenne/caesar
```