Coder Social home page Coder Social logo

rc4.js's Introduction

Build Status

RC4 in JavaScript

Background

Previously I had written the RC4 algorithm in Python. This was an experiment for fun to see how that would look translated into JavaScript using features from ES6 with Babel.js, due to alot of the features not yet being available. Without all of the Babel code this code came in at 72 lines (have a look in src/rc4.js) without comments.

Using rc4.js

To use rc4.js, once you have included it in your project. Simply create a new instance of it, passing rc4 your key. For example:

var test = new RC4('This is my secret key');

You then have the option to encrypt or decrypt text by using the following public functions:

test.decrypt(/* Text to decrypt to go here */);
// OR
test.encrypt(/* Text to encrypt to go here */);

Tests and Linting

Tests are written in Mocha and I am using eslint for linting. To configure eslint, you can find the options in the conf folder.

Contributing

If you see any improvements or any problems with my implementation, create an issue for it!

If you want to contribute, I am using Grunt for running my tasks.

Running grunt will run a 'developing' version where all of the tasks will be carried out and then it will begin watching the files for any changes.

Running grunt build will create a normal and minified build which will need to be done before it can be merged.

rc4.js's People

Contributors

danjford avatar

Watchers

James Cloos avatar Wish3D avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.