Searched refs:m_k (Results 1 - 11 of 11) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/libcryptoxx-5.6.0/
H A D3way.cpp71 m_k[i] = (word32)uk[4*i+3] | ((word32)uk[4*i+2]<<8) | ((word32)uk[4*i+1]<<16) | ((word32)uk[4*i]<<24);
75 theta(m_k[0], m_k[1], m_k[2]);
76 mu(m_k[0], m_k[1], m_k[2]);
77 m_k[0] = ByteReverse(m_k[0]);
78 m_k[
[all...]
H A Dtwofish.cpp65 m_k[i] = a+b;
66 m_k[i+1] = rotlFixed(a+2*b, 9);
116 a ^= m_k[0];
117 b ^= m_k[1];
118 c ^= m_k[2];
119 d ^= m_k[3];
121 const word32 *k = m_k+8;
131 c ^= m_k[4];
132 d ^= m_k[5];
133 a ^= m_k[
[all...]
H A Dtea.cpp16 GetUserKey(BIG_ENDIAN_ORDER, m_k.begin(), 4, userKey, KEYLENGTH);
29 y += (z << 4) + m_k[0] ^ z + sum ^ (z >> 5) + m_k[1];
30 z += (y << 4) + m_k[2] ^ y + sum ^ (y >> 5) + m_k[3];
44 z -= (y << 4) + m_k[2] ^ y + sum ^ (y >> 5) + m_k[3];
45 y -= (z << 4) + m_k[0] ^ z + sum ^ (z >> 5) + m_k[1];
56 GetUserKey(BIG_ENDIAN_ORDER, m_k
[all...]
H A Dseed.h28 FixedSizeSecBlock<word32, 32> m_k; member in class:SEED::Base
H A Dtea.h27 FixedSizeSecBlock<word32, 4> m_k; member in class:TEA::Base
66 FixedSizeSecBlock<word32, 4> m_k; member in class:XTEA::Base
103 GetUserKey(BIG_ENDIAN_ORDER, m_k.begin(), 4, key, KEYLENGTH);
109 FixedSizeSecBlock<word32, 4> m_k; member in class:BTEA::Base
H A D3way.h28 FixedSizeSecBlock<word32, 3> m_k; member in class:ThreeWay::Base
H A Dtwofish.h33 FixedSizeSecBlock<word32, 40> m_k; member in class:Twofish::Base
H A Deccrypto.cpp443 m_k = param.h;
537 if (m_k.NotZero())
538 m_k.DEREncode(seq);
546 if (!m_k)
550 m_k = (q+2*qSqrt+1)/m_n;
553 return m_k;
575 pass = pass && (m_k.IsZero() || m_k == (q+2*qSqrt+1)/m_n);
H A Dseed.cpp62 word32 *k = m_k;
92 t0 = b0 ^ m_k[2*i+0]; t1 = b1 ^ m_k[2*i+1] ^ t0;
96 t0 = a0 ^ m_k[2*i+2]; t1 = a1 ^ m_k[2*i+3] ^ t0;
H A Deccrypto.h48 m_k = k;
137 mutable Integer m_k; // cofactor member in class:DL_GroupParameters_EC
H A Dpubkey.h297 Integer m_k, m_s; member in class:PK_MessageAccumulatorBase
1051 alg.Sign(params, key.GetPrivateExponent(), ma.m_k, e, r, s);
1074 ma.m_k.Randomize(rng, 1, params.GetSubgroupOrder()-1);
1076 params.ConvertElementToInteger(params.ExponentiateBase(ma.m_k)).Encode(ma.m_presignature, ma.m_presignature.size());

Completed in 58 milliseconds