Searched refs:word32 (Results 76 - 100 of 115) sorted by relevance

12345

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/engines/ccgost/
H A Dgost89.h96 typedef unsigned int word32; typedef
H A Dgost_crypt.c243 word32 g, go;
254 g = buf1[0] | (buf1[1] << 8) | (buf1[2] << 16) | ((word32) buf1[3] << 24);
260 g = buf1[4] | (buf1[5] << 8) | (buf1[6] << 16) | ((word32) buf1[7] << 24);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/libcryptoxx-5.6.0/
H A Dcrc.cpp10 const word32 CRC32::m_tab[] = {
127 word32 crc = m_crc;
129 for(; !IsAligned<word32>(s) && n > 0; n--)
134 crc ^= *(const word32 *)s;
H A Dmd2.cpp107 word32 padlen;
H A Didea.cpp21 word32 p=(word32)low16(a)*b; \
46 word32 i;
H A Dmd4.cpp33 void MD4::Transform (word32 *digest, const word32 *in)
40 word32 A, B, C, D;
H A Dtest.cpp208 word32 coffPos = *(word16 *)(buf+0x3c);
209 word32 optionalHeaderPos = coffPos + 24;
216 word32 checksumPos = optionalHeaderPos + 64;
217 word32 certificateTableDirectoryPos = optionalHeaderPos + (optionalHeaderMagic == 0x10b ? 128 : 144);
218 word32 certificateTablePos = *(word32 *)(buf+certificateTableDirectoryPos);
219 word32 certificateTableSize = *(word32 *)(buf+certificateTableDirectoryPos+4);
231 word32 macPos = (unsigned int)(found-buf.begin());
560 channel = WordToString<word32>(
[all...]
H A Dasn.cpp218 void OID::EncodeValue(BufferedTransformation &bt, word32 v)
225 size_t OID::DecodeValue(BufferedTransformation &bt, word32 &v)
274 word32 v;
548 word32 version;
549 BERDecodeUnsigned<word32>(privateKeyInfo, version, INTEGER, 0, 0); // check version
568 DEREncodeUnsigned<word32>(privateKeyInfo, 0); // version
H A Deccrypto.cpp508 word32 version;
509 BERDecodeUnsigned<word32>(seq, version, INTEGER, 1, 1); // check version
533 DEREncodeUnsigned<word32>(seq, 1); // version
647 word32 version;
648 BERDecodeUnsigned<word32>(seq, version, INTEGER, 1, 1); // check version
685 DEREncodeUnsigned<word32>(privateKey, 1); // version
H A Dcpu.h32 extern CRYPTOPP_DLL word32 g_cacheLineSize;
35 CRYPTOPP_DLL bool CRYPTOPP_API CpuId(word32 input, word32 *output);
H A Dmd5.cpp25 void MD5::Transform (word32 *digest, const word32 *in)
36 word32 a, b, c, d;
H A Dcryptlib.h470 virtual size_t AdvancedProcessBlocks(const byte *inBlocks, const byte *xorBlocks, byte *outBlocks, size_t length, word32 flags) const;
697 virtual word32 GenerateWord32(word32 a=0, word32 b=0xffffffffL);
718 word32 GetLong(word32 a=0, word32 b=0xffffffffL) {return GenerateWord32(a, b);}
807 size_t PutWord32(word32 value, ByteOrder order=BIG_ENDIAN_ORDER, bool blocking=true);
905 size_t GetWord32(word32 &value, ByteOrder order=BIG_ENDIAN_ORDER);
910 size_t PeekWord32(word32
[all...]
H A Design.cpp104 PutWord(false, BIG_ENDIAN_ORDER, seed, (word32)0);
106 PutWord(false, BIG_ENDIAN_ORDER, seed, (word32)1);
H A Dttmac.cpp38 word32 t2 = m_digest[2];
39 word32 t3 = m_digest[3];
98 void TTMAC_Base::Transform(word32 *digest, const word32 *X, bool last)
102 a = rotlFixed((word32)a, s) + e;\
103 c = rotlFixed((word32)c, 10U)
105 word32 a1, b1, c1, d1, e1, a2, b2, c2, d2, e2;
106 word32 *trackA, *trackB;
H A Dalgebra.cpp236 expWindow = word32(exp % (word(1) << windowSize));
241 expWindow = (word32(1) << windowSize) - expWindow;
250 word32 expWindow;
H A Drsa.cpp195 word32 version;
196 BERDecodeUnsigned<word32>(privateKey, version, INTEGER, 0, 0); // check version
211 DEREncodeUnsigned<word32>(privateKey, 0); // version
H A Dbench.cpp119 LC_RNG rng((word32)time(NULL));
141 LC_RNG rng((word32)time(NULL));
H A Dfilters.h319 HashVerificationFilter(HashTransformation &hm, BufferedTransformation *attachment = NULL, word32 flags = DEFAULT_FLAGS, int truncatedDigestSize=-1);
334 word32 m_flags;
367 AuthenticatedDecryptionFilter(AuthenticatedSymmetricCipher &c, BufferedTransformation *attachment = NULL, word32 flags = DEFAULT_FLAGS, int truncatedDigestSize=-1, BlockPaddingScheme padding = DEFAULT_PADDING);
416 SignatureVerificationFilter(const PK_Verifier &verifier, BufferedTransformation *attachment = NULL, word32 flags = DEFAULT_FLAGS);
431 word32 m_flags;
460 void SetPassSignals(bool pass) { if (pass) m_behavior |= PASS_SIGNALS; else m_behavior &= ~(word32) PASS_SIGNALS; }
462 void SetPassWaitObjects(bool pass) { if (pass) m_behavior |= PASS_WAIT_OBJECTS; else m_behavior &= ~(word32) PASS_WAIT_OBJECTS; }
495 word32 m_behavior;
H A Dsalsa.cpp29 GetBlock<word32, LittleEndian> get1(key);
31 GetBlock<word32, LittleEndian> get2(key + length - 16);
44 GetBlock<word32, LittleEndian> get(IV);
51 m_state[8] = (word32)iterationCount;
52 m_state[5] = (word32)SafeRightShift<32>(iterationCount);
63 return GetAlignmentOf<word32>();
155 word32 r = m_rounds;
491 word32 x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15;
569 word32 x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15;
571 GetBlock<word32, LittleEndia
[all...]
H A Dfilters.cpp750 HashVerificationFilter::HashVerificationFilter(HashTransformation &hm, BufferedTransformation *attachment, word32 flags, int truncatedDigestSize)
759 m_flags = parameters.GetValueWithDefault(Name::HashVerificationFilterFlags(), (word32)DEFAULT_FLAGS);
853 AuthenticatedDecryptionFilter::AuthenticatedDecryptionFilter(AuthenticatedSymmetricCipher &c, BufferedTransformation *attachment, word32 flags, int truncatedDigestSize, BlockPaddingScheme padding)
864 word32 flags = parameters.GetValueWithDefault(Name::AuthenticatedDecryptionFilterFlags(), (word32)DEFAULT_FLAGS);
940 SignatureVerificationFilter::SignatureVerificationFilter(const PK_Verifier &verifier, BufferedTransformation *attachment, word32 flags)
949 m_flags = parameters.GetValueWithDefault(Name::SignatureVerificationFilterFlags(), (word32)DEFAULT_FLAGS);
H A Decp.cpp377 std::vector<std::vector<word32> > baseIndices(expCount);
379 std::vector<std::vector<word32> > exponentWindows(expCount);
407 baseIndices[i].push_back((word32)bases.size()-1);
H A Dpubkey.cpp15 word32 counter = counterStart;
H A Dbfinit.cpp6 const word32 Blowfish::Base::p_init[Blowfish::ROUNDS+2] =
15 const word32 Blowfish::Base::s_init[4*256] = {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/engines/ccgost/
H A Dgost89.h96 typedef unsigned int word32; typedef
H A Dgost_crypt.c243 word32 g, go;
254 g = buf1[0] | (buf1[1] << 8) | (buf1[2] << 16) | ((word32) buf1[3] << 24);
260 g = buf1[4] | (buf1[5] << 8) | (buf1[6] << 16) | ((word32) buf1[7] << 24);

Completed in 180 milliseconds

12345