Giter VIP home page Giter VIP logo

enigma's Introduction

Engima Simulator

A simulation of the Enigma machine implemented in C#.

Usage

  1. Specify a configuration (rotor wheels, plugboard, reflector, etc)
  2. Construct a machine from that configuration
  3. Encipher/decipher text using that machine

For example, the Operation Barbarossa example from the excellent Franklin Heath wiki can be deciphered as follows:

    var config = new Configuration();
    
    config.PlugBoard.Add("AV BS CG DL FU HZ IN KM OW RX");

    config.Rotors.Add(RotorName.II, RotorName.IV, RotorName.V);
    config.Rotors.SetRings(2, 21, 12);

    config.Reflector.Name = ReflectorName.RefB;
    
    var machine = config.Create();

    machine.Position = "BLA";

    var cipherText = "EDPUD NRGYS ZRCXN";  // truncated for brevity

    var plainText = machine.Encode(cipherText);

This and other examples may be found in SampleMessageTests.cs

Credits

This was made possible by the technical documentation made available by

enigma's People

Contributors

rkevinstout 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.