GithubHelp home page GithubHelp logo

martinholters / aes.jl Goto Github PK

View Code? Open in Web Editor NEW

This project forked from kanav99/aes.jl

0.0 1.0 0.0 75 KB

Advanced Encryption Standard On-the-Fly mode in Julia

License: MIT License

Julia 100.00%

aes.jl's Introduction

AES.jl

Build Status

AES On-the-Fly mode in Julia

API

using AES

# make a new key
k = [0x2b, 0x7e, 0x15, 0x16, 0x28, 0xae, 0xd2, 0xa6, 0xab, 0xf7, 0x15, 0x88, 0x09, 0xcf, 0x4f, 0x3c]
key = AES128Key(k)

# make a cipher object
cipher = AESCipher(;key_length=128, mode=AES.CBC, key=key)

# encrypt!
plaintext = "The quick brown fox jumps over the lazy dog."
ct = encrypt(plaintext, cipher)
pt = decrypt(ct, cipher)
@assert pt === plaintext

# you can set custom initialization vector
iv = [0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f]
ct = encrypt(plaintext, cipher; iv=iv)
pt = decrypt(ct, cipher)

@assert pt == transcode(UInt8, plaintext)
# or, if it's known that the original plaintext was valid UTF-8
@assert String(pt) == plaintext

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.