mirror of
https://git.rtems.org/rtems-libbsd/
synced 2025-05-19 18:57:56 +08:00

Git mirror commit 59f44d20be3f99d181ca742e636d45fc39ec982b. This commit updates OpenSSL to version 1.1.1. This required an update of racoon which uses some internal stuff from OpenSSL and seems to be mostly unmaintained, e.g. there is update in the FreeBSD ports to cope with OpenSSL 1.1.1. Update #3472.
16 lines
152 B
C
16 lines
152 B
C
/* $FreeBSD$ */
|
|
/*
|
|
* Public domain.
|
|
*/
|
|
|
|
#ifndef _CHACHA_H
|
|
#define _CHACHA_H
|
|
|
|
#include <sys/types.h>
|
|
|
|
struct chacha_ctx {
|
|
u_int input[16];
|
|
};
|
|
|
|
#endif
|