summaryrefslogtreecommitdiff
path: root/default.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2021-03-04 22:49:25 -0500
committerJeffrey Walton <noloader@gmail.com>2021-03-04 22:49:25 -0500
commit8e9cb9d9d8f4ed2423600d232860b7db49091e8a (patch)
tree83010d5a5527f1c043a554e3b897903ded413d50 /default.h
parent1a5346c6c797b585dbc761c0d5c93c0073dee843 (diff)
downloadcryptopp-git-8e9cb9d9d8f4ed2423600d232860b7db49091e8a.tar.gz
Whitespace check-in
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 f309308a..7fe443f2 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 specifying 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 specifying 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 specifying 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 specifying 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;