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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
--- rijndael.cpp.orig 2014-06-11 01:14:06.000000000 +0800
+++ rijndael.cpp 2014-07-31 22:46:27.956084561 +0800
@@ -7,6 +7,8 @@
***************************************************************************/
#include "rar.hpp"
+#ifndef OPENSSL_AES
+
#ifdef USE_SSE
#include <wmmintrin.h>
#endif
@@ -56,6 +58,7 @@
#endif
}
+#endif // OPENSSL_AES
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// API
@@ -63,14 +66,35 @@
Rijndael::Rijndael()
{
+#ifndef OPENSSL_AES
if (S[0]==0)
GenerateTables();
+#endif // OPENSSL_AES
CBCMode = true; // Always true for RAR.
}
void Rijndael::Init(bool Encrypt,const byte *key,uint keyLen,const byte * initVector)
{
+#ifdef OPENSSL_AES
+ const EVP_CIPHER *cipher;
+ switch(keyLen)
+ {
+ case 128:
+ cipher = EVP_aes_128_cbc();
+ break;
+ case 192:
+ cipher = EVP_aes_192_cbc();
+ break;
+ case 256:
+ cipher = EVP_aes_256_cbc();
+ break;
+ }
+
+ EVP_CIPHER_CTX_init(&ctx);
+ EVP_CipherInit_ex(&ctx, cipher, NULL, key, initVector, Encrypt);
+ EVP_CIPHER_CTX_set_padding(&ctx, 0);
+#else // OPENSSL_AES
#ifdef USE_SSE
// Check SSE here instead of constructor, so if object is a part of some
// structure memset'ed before use, this variable is not lost.
@@ -111,6 +135,7 @@
if(!Encrypt)
keyEncToDec();
+#endif // OPENSSL_AES
}
@@ -120,6 +145,11 @@
if (inputLen <= 0)
return;
+#ifdef OPENSSL_AES
+ int outLen;
+ EVP_CipherUpdate(&ctx, outBuffer, &outLen, input, inputLen);
+ return;
+#else // OPENSSL_AES
size_t numBlocks=inputLen/16;
#ifdef USE_SSE
if (AES_NI)
@@ -182,6 +212,8 @@
}
memcpy(m_initVector,iv,16);
+
+#endif // OPENSSL_AES
}
@@ -217,7 +249,7 @@
}
#endif
-
+#ifndef OPENSSL_AES
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// ALGORITHM
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////
@@ -357,7 +389,7 @@
U1[b][0]=U2[b][1]=U3[b][2]=U4[b][3]=T5[i][0]=T6[i][1]=T7[i][2]=T8[i][3]=FFmul0e(b);
}
}
-
+#endif // OPENSSL_AES
#if 0
static void TestRijndael();
|