Git Product home page Git Product logo

aes-stream's Introduction

AES-STREAM

A simple, but fast AES-PRF-based random number generator.

Fast, designed to fill large buffers with random data. Does fast key erasure.

Requires a modern Intel or AMD CPU with AES-NI support.

API

Pretty straightforward:

#include "aes-stream.h"

#define AES_STREAM_SEEDBYTES 32

void aes_stream_init(aes_stream_state *st, const unsigned char seed[AES_STREAM_SEEDBYTES]);

void aes_stream(aes_stream_state *st, unsigned char *buf, size_t buf_len);

Call aes_stream_init() with a seed, then aes_stream() to fill buf with buf_len random bytes.

aes_stream() can be called indefinitely without having to reseed the generator.

Compilation

Do not forget to tell your compiler to enable support for AES opcodes with the -maes flag.

Recommended: -Ofast -maes -march=native

Clang 7 appears to produce faster code than gcc 8.

Key erasure is performed after every call to stream(). If you are dealing with many short keys, implement a pool on top of this.

Uses AES-128 by default. Define AES_STREAM_ROUNDS=14 in order to use AES-256 instead.

References

aes-stream's People

Contributors

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