• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/libcryptoxx-5.6.0/

Lines Matching refs:string

25 	size_t TransferTo2(BufferedTransformation &target, lword &transferBytes, const std::string &channel=DEFAULT_CHANNEL, bool blocking=true);
26 size_t CopyRangeTo2(BufferedTransformation &target, lword &begin, lword end=LWORD_MAX, const std::string &channel=DEFAULT_CHANNEL, bool blocking=true) const;
41 size_t Output(int outputSite, const byte *inString, size_t length, int messageEnd, bool blocking, const std::string &channel=DEFAULT_CHANNEL);
42 size_t OutputModifiable(int outputSite, byte *inString, size_t length, int messageEnd, bool blocking, const std::string &channel=DEFAULT_CHANNEL);
43 bool OutputMessageEnd(int outputSite, int propagation, bool blocking, const std::string &channel=DEFAULT_CHANNEL);
44 bool OutputFlush(int outputSite, bool hardFlush, int propagation, bool blocking, const std::string &channel=DEFAULT_CHANNEL);
45 bool OutputMessageSeriesEnd(int outputSite, int propagation, bool blocking, const std::string &channel=DEFAULT_CHANNEL);
58 byte *HelpCreatePutSpace(BufferedTransformation &target, const std::string &channel, size_t minSize, size_t desiredSize, size_t &bufferSize)
75 byte *HelpCreatePutSpace(BufferedTransformation &target, const std::string &channel, size_t minSize)
77 byte *HelpCreatePutSpace(BufferedTransformation &target, const std::string &channel, size_t minSize, size_t bufferSize)
268 std::string AlgorithmName() const {return m_cipher.AlgorithmName();}
292 HashFilter(HashTransformation &hm, BufferedTransformation *attachment = NULL, bool putMessage=false, int truncatedDigestSize=-1, const std::string &messagePutChannel=DEFAULT_CHANNEL, const std::string &hashPutChannel=DEFAULT_CHANNEL);
294 std::string AlgorithmName() const {return m_hashModule.AlgorithmName();}
304 std::string m_messagePutChannel, m_hashPutChannel;
321 std::string AlgorithmName() const {return m_hashModule.AlgorithmName();}
348 AuthenticatedEncryptionFilter(AuthenticatedSymmetricCipher &c, BufferedTransformation *attachment = NULL, bool putAAD=false, int truncatedDigestSize=-1, const std::string &macChannel=DEFAULT_CHANNEL, BlockPaddingScheme padding = DEFAULT_PADDING);
351 byte * ChannelCreatePutSpace(const std::string &channel, size_t &size);
352 size_t ChannelPut2(const std::string &channel, const byte *begin, size_t length, int messageEnd, bool blocking);
369 std::string AlgorithmName() const {return m_hashVerifier.AlgorithmName();}
370 byte * ChannelCreatePutSpace(const std::string &channel, size_t &size);
371 size_t ChannelPut2(const std::string &channel, const byte *begin, size_t length, int messageEnd, bool blocking);
391 std::string AlgorithmName() const {return m_signer.AlgorithmName();}
418 std::string AlgorithmName() const {return m_verifier.AlgorithmName();}
477 byte * ChannelCreatePutSpace(const std::string &channel, size_t &size)
479 size_t ChannelPut2(const std::string &channel, const byte *begin, size_t length, int messageEnd, bool blocking)
481 size_t ChannelPutModifiable2(const std::string &channel, byte *begin, size_t length, int messageEnd, bool blocking)
483 bool ChannelFlush(const std::string &channel, bool completeFlush, int propagation=-1, bool blocking=true)
485 bool ChannelMessageSeriesEnd(const std::string &channel, int propagation=-1, bool blocking=true)
520 byte * ChannelCreatePutSpace(const std::string &channel, size_t &size)
522 size_t ChannelPut2(const std::string &channel, const byte *begin, size_t length, int messageEnd, bool blocking)
524 size_t ChannelPutModifiable2(const std::string &channel, byte *begin, size_t length, int messageEnd, bool blocking)
526 bool ChannelFlush(const std::string &channel, bool completeFlush, int propagation=-1, bool blocking=true)
528 bool ChannelMessageSeriesEnd(const std::string &channel, int propagation=-1, bool blocking=true)
581 //! Append input to a string object
611 //! Append input to an std::string
612 CRYPTOPP_DLL_TEMPLATE_CLASS StringSinkTemplate<std::string>;
613 typedef StringSinkTemplate<std::string> StringSink;
663 //! string-based implementation of Store interface
667 StringStore(const char *string = NULL)
668 {StoreInitialize(MakeParameters("InputBuffer", ConstByteArrayParameter(string)));}
669 StringStore(const byte *string, size_t length)
670 {StoreInitialize(MakeParameters("InputBuffer", ConstByteArrayParameter(string, length)));}
671 template <class T> StringStore(const T &string)
672 {StoreInitialize(MakeParameters("InputBuffer", ConstByteArrayParameter(string)));}
674 CRYPTOPP_DLL size_t TransferTo2(BufferedTransformation &target, lword &transferBytes, const std::string &channel=DEFAULT_CHANNEL, bool blocking=true);
675 CRYPTOPP_DLL size_t CopyRangeTo2(BufferedTransformation &target, lword &begin, lword end=LWORD_MAX, const std::string &channel=DEFAULT_CHANNEL, bool blocking=true) const;
697 size_t TransferTo2(BufferedTransformation &target, lword &transferBytes, const std::string &channel=DEFAULT_CHANNEL, bool blocking=true);
698 size_t CopyRangeTo2(BufferedTransformation &target, lword &begin, lword end=LWORD_MAX, const std::string &channel=DEFAULT_CHANNEL, bool blocking=true) const
717 size_t TransferTo2(BufferedTransformation &target, lword &transferBytes, const std::string &channel=DEFAULT_CHANNEL, bool blocking=true);
718 size_t CopyRangeTo2(BufferedTransformation &target, lword &begin, lword end=LWORD_MAX, const std::string &channel=DEFAULT_CHANNEL, bool blocking=true) const;
777 //! string-based implementation of Source interface
783 //! zero terminated string as source
784 StringSource(const char *string, bool pumpAll, BufferedTransformation *attachment = NULL)
785 : SourceTemplate<StringStore>(attachment) {SourceInitialize(pumpAll, MakeParameters("InputBuffer", ConstByteArrayParameter(string)));}
787 StringSource(const byte *string, size_t length, bool pumpAll, BufferedTransformation *attachment = NULL)
788 : SourceTemplate<StringStore>(attachment) {SourceInitialize(pumpAll, MakeParameters("InputBuffer", ConstByteArrayParameter(string, length)));}
789 //! std::string as source
790 StringSource(const std::string &string, bool pumpAll, BufferedTransformation *attachment = NULL)
791 : SourceTemplate<StringStore>(attachment) {SourceInitialize(pumpAll, MakeParameters("InputBuffer", ConstByteArrayParameter(string)));}