New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

caesar-ciphers

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

caesar-ciphers

Multiple implementations of the Caesar Cipher.

  • 0.1.1
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

Build Status Dependency Status Built with Grunt

NPM

Selenium Test Status

caesar-ciphers

browser support

Multiple implementations of the Caesar Cipher.

Development Stage

This software is in pre-alpha stage.

Command Line Interface

Installation

[sudo] npm install caesar-ciphers -g

Usage

$ caesar-ciphers --help
Usage:
   caesar-ciphers encrypt [options] text
   caesar-ciphers enc     [options] text (same as encrypt)
   caesar-ciphers decrypt [options] text
   caesar-ciphers dec     [options] text (same as decrypt)
   caesar-ciphers list    [options]      (list implementations)


Options:
  -s, --shift          the shift parameter, i.e. the encryption key  [default: 1]
  -d, --debug          set debug mode
  -i, --implemenation                                                [default: "NodeBuffer"]
$ caesar-ciphers list
Cipher Implementations:
=======================
StringAppend
EffectiveStringBuilding
TypedArrayBuffer
NodeBuffer
$ caesar-ciphers --shift 1 enc abcdef@example.com
bcdefg@fybnqmf.dpn

Removal

[sudo] npm uninstall caesar-ciphers -g

Node.js

Installation

npm install caesar-ciphers --save

Usage

var Cipher = require('caesar-ciphers').defaultCipher;
var cipher = new Cipher(3);
cipher.encrypt('abcdef@example.com');
// retuns 'defghi@hadpsoh.frp'

Removal

npm uninstall caesar-ciphers

License

Copyright (c) 2014 Michael Mayer

Licensed under the MIT license.

Bitdeli Badge

Keywords

FAQs

Package last updated on 08 Apr 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc