skipjack 0.2.0

A straight-line implementation of Skipjack in Rust
Documentation
  • Coverage
  • 50%
    2 out of 4 items documented0 out of 2 items with examples
  • Size
  • Source code size: 22.52 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 399.20 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • Homepage
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • woodruffw

skipjack.rs

license Build Status

Note: Skipjack is not suitable for contemporary use. This library exists as an example, and not for consumption.

skipjack.rs is a straight-line (meaning no branches or loops) Rust implementation of the Skipjack cipher, best known for its use by the NSA in the Clipper chip.

skipjack.rs has three primary goals (all for educational purposes, for yours truly):

  1. To represent safe, idiomatic Rust in a cryptographic context
  2. To be easy to read and understand with a minimal understanding of Rust, even without a background in cryptography
  3. To directly reflect the NIST specification for Skipjack (i.e., no optimizations or shortcuts)

Design

This implementation attempts to adhere closely to the NIST-provided specification in design, and does not support any modes of operation other than single-block codebook.

Installation

You should not use Skipjack (or skipjack.rs) for anything serious. But, if you'd like to play with it, you can install it via cargo:

[dependencies]

skipjack = "0.1.0"

Documentation is available on docs.rs.