mirror of
https://github.com/Q3Rally-Team/q3rally.git
synced 2024-11-22 12:01:44 +00:00
866aa787cf
Update to ioquake3 revision 3306 from 1951 of the ioq3 Github repo via subversion. Over 4 years of changes.
30 lines
772 B
C
30 lines
772 B
C
#ifndef _INCL_RSA_COMMON_H_
|
|
#define _INCL_RSA_COMMON_H_ 1
|
|
|
|
#include <stdarg.h>
|
|
#include <stdio.h>
|
|
#include <errno.h>
|
|
|
|
#define TFM_DESC
|
|
#define LTC_NO_ROLC
|
|
#include "tomcrypt.h"
|
|
|
|
#define SALT_LEN 8
|
|
|
|
#if defined(__GNUC__) || defined(__clang__)
|
|
#define NEVER_RETURNS __attribute__((noreturn))
|
|
#define PRINTF_FUNC(fmtargnum, dotargnum) __attribute__ (( format( __printf__, fmtargnum, dotargnum )))
|
|
#else
|
|
#define NEVER_RETURNS
|
|
#define PRINTF_FUNC(fmtargnum, dotargnum)
|
|
#endif
|
|
|
|
void fail(const char *fmt, ...) NEVER_RETURNS PRINTF_FUNC(1, 2);
|
|
void write_file(const char *fname, const void *buf, const unsigned long len);
|
|
void read_file(const char *fname, void *buf, unsigned long *len);
|
|
void read_rsakey(rsa_key *key, const char *fname);
|
|
|
|
#endif
|
|
|
|
/* end of rsa_common.h ... */
|
|
|