freebsd-src/sys/crypto/chacha20/_chacha.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
136 B
C
Raw Normal View History

/*
* Public domain.
*/
#ifndef _CHACHA_H
#define _CHACHA_H
#include <sys/types.h>
struct chacha_ctx {
u_int input[16];
};
#endif