Searched refs:feedbackSize (Results 1 - 3 of 3) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/libcryptoxx-5.6.0/
H A Dmodes.h52 void SetCipherWithIV(BlockCipher &cipher, const byte *iv, int feedbackSize = 0)
57 this->SetFeedbackSize(feedbackSize);
65 virtual void SetFeedbackSize(unsigned int feedbackSize) argument
67 if (!(feedbackSize == 0 || feedbackSize == BlockSize()))
91 int feedbackSize = params.GetIntValueWithDefault(Name::FeedbackSize(), 0); local
92 SetFeedbackSize(feedbackSize);
108 void SetFeedbackSize(unsigned int feedbackSize);
266 CipherModeFinalTemplate_CipherHolder(const byte *key, size_t length, const byte *iv, int feedbackSize) argument
269 this->SetKey(key, length, MakeParameters(Name::IV(), ConstByteArrayParameter(iv, this->m_cipher->BlockSize()))(Name::FeedbackSize(), feedbackSize));
[all...]
H A Dmodes.cpp63 void CFB_ModePolicy::SetFeedbackSize(unsigned int feedbackSize) argument
65 if (feedbackSize > BlockSize())
67 m_feedbackSize = feedbackSize ? feedbackSize : BlockSize();
H A Dfipsalgt.cpp57 TestDataParser(std::string algorithm, std::string test, std::string mode, unsigned int feedbackSize, bool encrypt, BufferedTransformation *attachment) argument
58 : m_algorithm(algorithm), m_test(test), m_mode(mode), m_feedbackSize(feedbackSize)
1244 unsigned int feedbackSize = mode == "CFB" ? atoi(filename.substr(filename.find_first_of("0123456789")).c_str()) : 0;
1278 FileSource(pathname.c_str(), true, new LineBreakParser(new TestDataParser(algorithm, test, mode, feedbackSize, encrypt, pSink)), false);

Completed in 117 milliseconds