Skip to content

Commit

Permalink
Fix "There are no arguments to ‘GetAlgorithm’ that depend on a templa…
Browse files Browse the repository at this point in the history
…te parameter"
  • Loading branch information
noloader committed May 1, 2017
1 parent a33a343 commit f8c1348
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion seckey.h
Expand Up @@ -451,7 +451,7 @@ class CRYPTOPP_NO_VTABLE VariableBlockCipherImpl : public AlgorithmImpl<SimpleKe
//! \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;
}

Expand Down

1 comment on commit f8c1348

@noloader
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also see Issue 408.

Please sign in to comment.