-
Notifications
You must be signed in to change notification settings - Fork 0
/
crypto.h
41 lines (31 loc) · 839 Bytes
/
crypto.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
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/*
* File: crypto.h
* Author: Project2100
*
* Created on 09 February 2018, 17:31
*/
#ifndef CRYPTO_H
#define CRYPTO_H
#ifdef __cplusplus
extern "C" {
#endif
//------------------------------------------------------------------------------
// RETURN VALUES
#define SITH_FAILCRYPTO_ARG 1
#define SITH_FAILCRYPTO_FILE 2
#define SITH_FAILCRYPTO_NOMEM 3
#define SITH_FAILCRYPTO_ENDEC 4
#define SITH_FAILCRYPTO_RELEASE 5
#define SITH_FAILCRYPTO_404 6
#define SITH_FAILCRYPTO_NOTREG 7
#define SITH_FAILCRYPTO_LOCKED 8
#define SITH_FAILCRYPTO_SEED 9
#ifdef __cplusplus
}
#endif
#endif /* CRYPTO_H */