Searched refs:word32 (Results 51 - 75 of 115) sorted by relevance

12345

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/libcryptoxx-5.6.0/
H A Dvmac.cpp149 word32 L1KeyLength = m_L1KeyLength;
152 word32 temp;
393 #define MUL32(a, b) __emulu(word32(a), word32(b))
395 #define MUL32(a, b) ((word64)((word32)(a)) * (word32)(b))
424 a##1 += word32((p)>>32);\
425 a##0 += word32(p);\
427 a##2 += word32((p)>>32);\
428 a##1 += word32(
[all...]
H A D3way.h28 FixedSizeSecBlock<word32, 3> m_k;
H A Ddes.h16 void RawProcessBlock(word32 &l, word32 &r) const;
19 static const word32 Spbox[8][64];
21 FixedSizeSecBlock<word32, 32> k;
H A Drc5.h16 typedef word32 RC5_WORD;
H A Drc6.h16 typedef word32 RC6_WORD;
H A Dserpent.h27 FixedSizeSecBlock<word32, 33*4> m_key;
H A Dida.cpp40 word32 outputChannelID;
51 unsigned int RawIDA::InsertInputChannel(word32 channelId)
79 unsigned int RawIDA::LookupInputChannel(word32 channelId) const
81 map<word32, unsigned int>::const_iterator it = m_inputChannelMap.find(channelId);
88 void RawIDA::ChannelData(word32 channelId, const byte *inString, size_t length, bool messageEnd)
120 lword RawIDA::InputBuffered(word32 channelId) const
142 void RawIDA::AddOutputChannel(word32 channelId)
205 vector<word32> inputChannelIds;
283 RawIDA::IsolatedInitialize(CombinedNameValuePairs(parameters, MakeParameters("OutputChannelID", (word32)0xffffffff)));
334 for (word32
[all...]
H A Dseed.cpp9 static const word32 s_kc[16] = {
62 word32 *k = m_k;
72 word32 t0 = word32(key01>>32) + word32(key23>>32) - s_kc[i];
73 word32 t1 = word32(key01) - word32(key23) + s_kc[i];
86 typedef BlockGetAndPut<word32, BigEndian> Block;
87 word32 a
[all...]
H A Dcamellia.cpp22 word32 zr = ll ^ kl; \
23 word32 zl = lh ^ kh; \
42 word32 th = lh ^ kh; \
43 word32 tl = ll ^ kl; \
44 word32 d = SP[0][GETBYTE(tl,0)] ^ SP[1][GETBYTE(tl,3)] ^ SP[2][GETBYTE(tl,2)] ^ SP[3][GETBYTE(tl,1)]; \
45 word32 u = SP[0][GETBYTE(th,3)] ^ SP[1][GETBYTE(th,2)] ^ SP[2][GETBYTE(th,1)] ^ SP[3][GETBYTE(th,0)]; \
66 word32 *ks32 = m_key.data();
71 word32 kl0, kl1, kl2, kl3;
72 GetBlock<word32, BigEndian> getBlock(key);
74 word32 k
[all...]
H A Dconfig.h105 typedef unsigned int word32; typedef
126 typedef word32 hword;
134 typedef word32 hword;
142 typedef word32 word;
149 typedef word32 word;
H A Dgcm.cpp272 word32 z0 = (word32)x0;
273 word32 z1 = (word32)(x0>>32);
274 word32 z2 = (word32)x1;
275 word32 z3 = (word32)(x1>>32);
303 word32 r = (word32)s_reductionTabl
[all...]
H A Deprecomp.cpp45 word32 version;
46 BERDecodeUnsigned<word32>(seq, version, INTEGER, 1, 1);
60 DEREncodeUnsigned<word32>(seq, 1); // version
H A Dbench2.cpp38 LC_RNG rng((word32)time(NULL));
60 LC_RNG rng((word32)time(NULL));
78 LC_RNG rng((word32)time(NULL));
100 LC_RNG rng((word32)time(NULL));
122 LC_RNG rng((word32)time(NULL));
142 LC_RNG rng((word32)time(NULL));
162 LC_RNG rng((word32)time(NULL));
183 LC_RNG rng((word32)time(NULL));
H A Dpssr.cpp64 PutWord(false, BIG_ENDIAN_ORDER, c, (word32)SafeRightShift<29>(recoverableMessageLength));
65 PutWord(false, BIG_ENDIAN_ORDER, c+4, word32(recoverableMessageLength << 3));
129 PutWord(false, BIG_ENDIAN_ORDER, c, (word32)SafeRightShift<29>(recoverableMessageLength));
130 PutWord(false, BIG_ENDIAN_ORDER, c+4, word32(recoverableMessageLength << 3));
H A Dasn.h86 OID(word32 v) : m_values(1, v) {}
89 inline OID & operator+=(word32 rhs) {m_values.push_back(rhs); return *this;}
97 std::vector<word32> m_values;
100 static void EncodeValue(BufferedTransformation &bt, word32 v);
101 static size_t DecodeValue(BufferedTransformation &bt, word32 &v);
108 EncodedObjectFilter(BufferedTransformation *attachment = NULL, unsigned int nObjects = 1, word32 flags = 0);
118 word32 m_flags;
H A Dsosemanuk.cpp26 word32 a, b, c, d, e;
28 typedef BlockGetAndPut<word32, LittleEndian> Block;
31 const word32 *k = m_key;
85 word32 s_sosemanukMulTables[512] = {
296 return GetAlignmentOf<word32>();
316 void Sosemanuk_OperateKeystream(size_t iterationCount, const byte *input, byte *output, word32 *state);
359 word32 *state = m_state;
650 word32 s0 = m_state[0];
651 word32 s1 = m_state[1];
652 word32 s
[all...]
H A Dcast.cpp34 typedef BlockGetAndPut<word32, BigEndian> Block;
38 word32 t, l, r;
68 word32 t, l, r;
103 word32 X[4], Z[4];
153 const word32 CAST256::Base::t_m[8][24]={
216 word32 t, block[4];
240 void CAST256::Base::Omega(int i, word32 kappa[8])
242 word32 t;
258 word32 kappa[8];
H A Dcryptlib.cpp23 CRYPTOPP_COMPILE_ASSERT(sizeof(word32) == 4);
134 size_t BlockTransformation::AdvancedProcessBlocks(const byte *inBlocks, const byte *xorBlocks, byte *outBlocks, size_t length, word32 flags) const
174 return GetAlignmentOf<word32>();
179 return GetAlignmentOf<word32>();
184 return GetAlignmentOf<word32>();
241 word32 RandomNumberGenerator::GenerateWord32(word32 min, word32 max)
243 word32 range = max-min;
246 word32 valu
[all...]
H A Dccm.cpp80 PutWord<word32>(false, BIG_ENDIAN_ORDER, m_buffer+2, (word32)headerLength);
H A Diterhash.cpp155 template class IteratedHashBase<word32, HashTransformation>;
156 template class IteratedHashBase<word32, MessageAuthenticationCode>;
H A Diterhash.h100 CRYPTOPP_DLL_TEMPLATE_CLASS IteratedHashBase<word32, HashTransformation>;
101 CRYPTOPP_STATIC_TEMPLATE_CLASS IteratedHashBase<word32, MessageAuthenticationCode>;
H A Dwait.h118 CallStackWithNr(char const* i, word32 n, CallStack const* p) : CallStack(i, p), m_nr(n) {}
122 word32 m_nr;
H A Dsha.cpp45 void SHA1::Transform(word32 *state, const word32 *data)
47 word32 W[16];
49 word32 a = state[0];
50 word32 b = state[1];
51 word32 c = state[2];
52 word32 d = state[3];
53 word32 e = state[4];
89 static const word32 s[8] = {0xc1059ed8, 0x367cd507, 0x3070dd17, 0xf70e5939, 0xffc00b31, 0x68581511, 0x64f98fa7, 0xbefa4fa4};
95 static const word32
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/engines/ccgost/
H A Dgost89.c224 c->k87[i] = (word32) (b->k8[i >> 4] << 4 | b->k7[i & 15]) << 24;
233 static word32 f(gost_ctx * c, word32 x)
244 register word32 n1, n2; /* As named in the GOST */
245 n1 = in[0] | (in[1] << 8) | (in[2] << 16) | ((word32) in[3] << 24);
246 n2 = in[4] | (in[5] << 8) | (in[6] << 16) | ((word32) in[7] << 24);
298 register word32 n1, n2; /* As named in the GOST */
299 n1 = in[0] | (in[1] << 8) | (in[2] << 16) | ((word32) in[3] << 24);
300 n2 = in[4] | (in[5] << 8) | (in[6] << 16) | ((word32) in[7] << 24);
420 k[j] | (k[j + 1] << 8) | (k[j + 2] << 16) | ((word32)
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/engines/ccgost/
H A Dgost89.c224 c->k87[i] = (word32) (b->k8[i >> 4] << 4 | b->k7[i & 15]) << 24;
233 static word32 f(gost_ctx * c, word32 x)
244 register word32 n1, n2; /* As named in the GOST */
245 n1 = in[0] | (in[1] << 8) | (in[2] << 16) | ((word32) in[3] << 24);
246 n2 = in[4] | (in[5] << 8) | (in[6] << 16) | ((word32) in[7] << 24);
298 register word32 n1, n2; /* As named in the GOST */
299 n1 = in[0] | (in[1] << 8) | (in[2] << 16) | ((word32) in[3] << 24);
300 n2 = in[4] | (in[5] << 8) | (in[6] << 16) | ((word32) in[7] << 24);
420 k[j] | (k[j + 1] << 8) | (k[j + 2] << 16) | ((word32)
[all...]

Completed in 110 milliseconds

12345