Coder Social home page Coder Social logo

n1ghtf1re / stream-ciphers Goto Github PK

View Code? Open in Web Editor NEW
5.0 1.0 4.0 32 KB

The implementation of the stream ciphers: LFSR, GEFFE, RC4

License: MIT License

Java 100.00%
lfsr algorithm crytography crypto-algorithm stream-cipher stream-ciphers cipher-algorithms cipher rc4 rc4-algorithm

stream-ciphers's Introduction

Stream ciphers

Stars Total Downloads Latest Stable Version License

About the library

The library contains three stream ciphers: LFSR, Geffe, RC4

Class LFSR:

Constructors:

  • LFSR(long initRegister, int[] polinom)
  • LFSR(String initRegister) - default poinom (x^24 + x^4 + x^3 + x + 1)

Methods:

  • encrypt(byte[]) - return encoded bytes array.
  • decrypt(byte[]) - return decoded bytes array.
  • generateKey() - return bytes array of key

Class GEFFE:

Constructors:

  • Geffe(String initRegister1, String initRegister2, String initRegister3, int[] polinom1, int polinom2[], int polinom3[])
  • Geffe(String initRegister1, String initRegister2, String initRegister3) - default poinoms (x^24 + x^4 + x^3 + x + 1, x^32 + x^28 + x^27 + x + 1, x^40 + x^21 + x^19 + x^2 + 1)

Methods:

  • encrypt(byte[]) - return encoded bytes array.
  • decrypt(byte[]) - return decoded bytes array.
  • generateKey() - return bytes array of key

Class RC4:

Constructors:

  • RC4(String strKey)

Methods:

  • encrypt(byte[]) - return encoded bytes array.
  • decrypt(byte[]) - return decoded bytes array.
  • generateKey() - return bytes array of key

stream-ciphers's People

Contributors

n1ghtf1re avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 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.