summaryrefslogtreecommitdiff
path: root/default.h
diff options
context:
space:
mode:
authorTobias Nießen <tniessen@users.noreply.github.com>2021-03-04 19:17:42 +0100
committerGitHub <noreply@github.com>2021-03-04 13:17:42 -0500
commit0a40a0c3cab53a6cc2d45a084d9c24d39fa97c96 (patch)
tree2204beffa43998a4a50fe6f80417a9585cd7d1d4 /default.h
parent1f1a7994c85f962954283eb27f1e6d9eb10d7ecb (diff)
downloadcryptopp-git-0a40a0c3cab53a6cc2d45a084d9c24d39fa97c96.tar.gz
Fix typos in documentation and comments (PR #1012)
Diffstat (limited to 'default.h')
-rw-r--r--default.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/default.h b/default.h
index da9cfb8d..f309308a 100644
--- a/default.h
+++ b/default.h
@@ -125,14 +125,14 @@ public:
/// \brief Constructs a DataDecryptor
/// \param passphrase a C-String password
/// \param attachment a BufferedTransformation to attach to this object
- /// \param throwException a flag specifiying whether an Exception should be thrown on error
+ /// \param throwException a flag specifying whether an Exception should be thrown on error
DataDecryptor(const char *passphrase, BufferedTransformation *attachment = NULLPTR, bool throwException=true);
/// \brief Constructs a DataDecryptor
/// \param passphrase a byte string password
/// \param passphraseLength the length of the byte string password
/// \param attachment a BufferedTransformation to attach to this object
- /// \param throwException a flag specifiying whether an Exception should be thrown on error
+ /// \param throwException a flag specifying whether an Exception should be thrown on error
DataDecryptor(const byte *passphrase, size_t passphraseLength, BufferedTransformation *attachment = NULLPTR, bool throwException=true);
enum State {WAITING_FOR_KEYCHECK, KEY_GOOD, KEY_BAD};
@@ -227,14 +227,14 @@ public:
/// \brief Constructs a DataDecryptor
/// \param passphrase a C-String password
/// \param attachment a BufferedTransformation to attach to this object
- /// \param throwException a flag specifiying whether an Exception should be thrown on error
+ /// \param throwException a flag specifying whether an Exception should be thrown on error
DataDecryptorWithMAC(const char *passphrase, BufferedTransformation *attachment = NULLPTR, bool throwException=true);
/// \brief Constructs a DataDecryptor
/// \param passphrase a byte string password
/// \param passphraseLength the length of the byte string password
/// \param attachment a BufferedTransformation to attach to this object
- /// \param throwException a flag specifiying whether an Exception should be thrown on error
+ /// \param throwException a flag specifying whether an Exception should be thrown on error
DataDecryptorWithMAC(const byte *passphrase, size_t passphraseLength, BufferedTransformation *attachment = NULLPTR, bool throwException=true);
typename DataDecryptor<BC,H,Info>::State CurrentState() const;