Fix "There are no arguments to ‘GetAlgorithm’ that depend on a template parameter"
parent
a33a3435f4
commit
f8c1348667
2
seckey.h
2
seckey.h
|
|
@ -451,7 +451,7 @@ public:
|
|||
//! \returns the initialization vector length, in bytes
|
||||
unsigned int IVSize() const {
|
||||
if (!this->IsResynchronizable())
|
||||
throw NotImplemented(GetAlgorithm().AlgorithmName() + ": this object doesn't support resynchronization");
|
||||
throw NotImplemented(this->GetAlgorithm().AlgorithmName() + ": this object doesn't support resynchronization");
|
||||
return m_blocksize ? m_blocksize : this->IV_LENGTH;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue