forked from BrianGladman/aes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
aesaux.h
78 lines (66 loc) · 2.68 KB
/
aesaux.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/*
---------------------------------------------------------------------------
Copyright (c) 1998-2013, Brian Gladman, Worcester, UK. All rights reserved.
The redistribution and use of this software (with or without changes)
is allowed without the payment of fees or royalties provided that:
source code distributions include the above copyright notice, this
list of conditions and the following disclaimer;
binary distributions include the above copyright notice, this list
of conditions and the following disclaimer in their documentation.
This software is provided 'as is' with no explicit or implied warranties
in respect of its operation, including, but not limited to, correctness
and fitness for purpose.
---------------------------------------------------------------------------
Issue Date: 20/12/2007
*/
#ifndef AESAUX_H
#define AESAUX_H
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include "aestst.h"
#if defined(__cplusplus)
extern "C"
{
#endif
#define FALSE 0
#define TRUE 1
enum line_type { bad_line = 0, block_len, key_len, test_no, iv_val, key_val, pt_val, ct_val };
#define NO_LTYPES 8
#define BADL_STR "BADLINE="
#define BLEN_STR "BLOCKSIZE="
#define KLEN_STR "KEYSIZE= "
#define TEST_STR "TEST= "
#define IV_STR "IV= "
#define KEY_STR "KEY= "
#define PT_STR "PT= "
#define CT_STR "CT= "
char *file_name(char* buf, size_t len, const unsigned long type, const unsigned long blen, const unsigned long klen);
const char *pos(const char *s);
int to_hex(int ch);
int get_line(FILE *inf, char s[]);
char *copy_str(char *s, const char *fstr);
char *df_string(const char *p);
int block_in(unsigned char l[], const char *p);
void block_clear(unsigned char l[], const unsigned long len);
void block_reverse(unsigned char l[], const unsigned long len);
void block_copy(unsigned char l[], const unsigned char r[], const unsigned long len);
void block_xor(unsigned char l[], const unsigned char r[], const unsigned long len);
int block_cmp(const unsigned char l[], const unsigned char r[], const unsigned long len);
unsigned long rand32(void);
unsigned char rand8(void);
void block_rndfill(unsigned char l[], unsigned long len);
void put_dec(char *s, unsigned long val);
unsigned long get_dec(const char *s);
int cmp_nocase(const char *s1, const char *s2);
int test_args(int argc, char *argv[], char des_chr, char tst_chr);
int find_string(const char *s1, const char s2[]);
enum line_type find_line(FILE *inf, char str[]);
void block_out(const enum line_type ty, const unsigned char b[], FILE *outf, const unsigned long len);
#if defined( DLL_IMPORT ) && defined( DYNAMIC_LINK )
HINSTANCE init_dll(fn_ptrs *fn);
#endif
#if defined(__cplusplus)
}
#endif
#endif