From 4afd858ae4974f82f9997b9184bc3d8d71d29b6e Mon Sep 17 00:00:00 2001 From: weidai Date: Thu, 14 Dec 2006 11:41:39 +0000 Subject: port to Borland C++Builder 2006 --- salsa.h | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'salsa.h') diff --git a/salsa.h b/salsa.h index dd66d157..8d6bedf2 100755 --- a/salsa.h +++ b/salsa.h @@ -8,20 +8,17 @@ NAMESPACE_BEGIN(CryptoPP) //! _ -struct Salsa20_Info : public VariableKeyLength<32, 16, 32, 16, SimpleKeyingInterface::STRUCTURED_IV> +struct Salsa20_Info : public VariableKeyLength<32, 16, 32, 16, SimpleKeyingInterface::STRUCTURED_IV, 8> { static const char *StaticAlgorithmName() {return "Salsa20";} }; class CRYPTOPP_NO_VTABLE Salsa20_Policy : public AdditiveCipherConcretePolicy, public Salsa20_Info { -public: - unsigned int IVSize() const {return 8;} - void GetNextIV(byte *IV) const; - protected: void CipherSetKey(const NameValuePairs ¶ms, const byte *key, size_t length); void OperateKeystream(KeystreamOperation operation, byte *output, const byte *input, size_t iterationCount); + void CipherGetNextIV(byte *IV); void CipherResynchronize(byte *keystreamBuffer, const byte *IV); bool IsRandomAccess() const {return true;} void SeekToIteration(lword iterationCount); -- cgit v1.2.1