npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ebg13

v1.3.9

Published

Simple Rot13 implementation

Downloads

75

Readme

ebg13

Simple Rot13 implementation

Build Status

Basic Rot13 (a.k.a symmetric Caesar Cipher)

Example use

npm install ebg13
var ebg13 = require('ebg13');

var encodedMessage = ebg13('secret message');

console.log('Decoded message:' + ebg13(encodedMessage));

Asymmetric keys

As Rot13 is just a special case of Caesar Cipher with a symmetric key of 13, version 1.2.0 implements a backward compatible implementation of the algorithm for assymetric keys.

Example use

npm install ebg13
var caesar = require('ebg13');

var encodedMessage = caesar('secret Message', 12);

console.log('Decoded message:' + caesar(encodedMessage, 14));

Generating keys

If you don't want to generate assymetric keys manually, ebg13 comes with a convenience generator.

var keys = require('ebg13/keys')

myKeys = keys.generate();

var encodedMessage = caesar('secret Message', myKeys.public);

console.log('Decoded message:' + caesar(encodedMessage, myKeys.private));

CLI

From version 1.3.0 ebg13 can be used as a command line tool

Usage

 ___________________________________________________________________________________________
/                                                                                           \
| Usage: ebg13 [--generate-keys] [--seed seed] [--key key] message1 [message2 [...]]        |
|                                                                                           |
|   --generate-keys - Generages a pair of assymetric keys to be used for encoding/deconding |
|   --seed seed - uses the seed as the private key and calculates a public key from it      |
|   --key key - [optional] encoding/decoding key (it defaults to 13)                        |
|   message1, message2, ... - a list of at least one message to be encoded/decoded          |
|                                                                                           |
| A non empty list og messages is required for encoding/decoding but is                     |
| not necessary when generating keys.                                                       |
\                                                                                           /
 -------------------------------------------------------------------------------------------
        \   ^__^
         \  (oo)\_______
            (__)\       )\/\
                ||----w |
                ||     ||

examples

$ ebg message --key 2
oguucig
$ ebg message --generate-keys
{ private: 10, public: 16 }
$ ebg message --generate-keys --seed 1
{ private: 1, public: 25 }
$ ebg message secret "secret message"
zrffntr
frperg
frperg zrffntr

Disclaimer

Rot13 is a playful cryptographic algorithm, it's fun, it's even insighful but it's of absolutely no use in practice, it does not provide any level of security. Do not use is on any data that you are not comfortable sharing publicly. You have been warned.

ChangeLog

1.3.0

  • CLI interface

1.2.0

  • Introduction of assymetric keys