Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

/* $FreeBSD$ */
/*
 * Public domain.
 */

#ifndef _CHACHA_H
#define _CHACHA_H

#include <sys/types.h>

struct chacha_ctx {
	u_int input[16];
};

#endif