root/sys/crypto/chacha20/_chacha.h
/*
 * Public domain.
 */

#ifndef _CHACHA_H
#define _CHACHA_H

#include <sys/types.h>

struct chacha_ctx {
        uint32_t input[16];
};

#endif