aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-10-13 19:04:05 +0000
committerlloyd <[email protected]>2008-10-13 19:04:05 +0000
commit37c57e7f6f1c9d79978da1f23e30c0968c6b1347 (patch)
tree8203cd69d8110d4c4b97aad584e8499a2fa6f7b7
parent0472f4f7ea182633d8ec758d14a66e2cb1db7044 (diff)
Wrap lines
-rw-r--r--src/pubkey/pubkey/pubkey.h13
1 files changed, 9 insertions, 4 deletions
diff --git a/src/pubkey/pubkey/pubkey.h b/src/pubkey/pubkey/pubkey.h
index 4a75e7be8..656fcb18b 100644
--- a/src/pubkey/pubkey/pubkey.h
+++ b/src/pubkey/pubkey/pubkey.h
@@ -265,7 +265,9 @@ class BOTAN_DLL PK_Key_Agreement
* @param key the key to use
* @param kdf_name the name of the key derivation function to use
*/
- PK_Key_Agreement(const PK_Key_Agreement_Key& key, const std::string& kdf_name);
+ PK_Key_Agreement(const PK_Key_Agreement_Key& key,
+ const std::string& kdf_name);
+
private:
PK_Key_Agreement(const PK_Key_Agreement_Key&);
PK_Key_Agreement& operator=(const PK_Key_Agreement&);
@@ -287,7 +289,8 @@ class BOTAN_DLL PK_Encryptor_MR_with_EME : public PK_Encryptor
* @param key the key to use inside the decryptor
* @param eme the name of the eme to use
*/
- PK_Encryptor_MR_with_EME(const PK_Encrypting_Key& key, const std::string& eme);
+ PK_Encryptor_MR_with_EME(const PK_Encrypting_Key& key,
+ const std::string& eme);
~PK_Encryptor_MR_with_EME() { delete encoder; }
private:
@@ -312,7 +315,8 @@ class BOTAN_DLL PK_Decryptor_MR_with_EME : public PK_Decryptor
* @param key the key to use inside the encryptor
* @param eme the name of the EME to use
*/
- PK_Decryptor_MR_with_EME(const PK_Decrypting_Key& key, const std::string& eme);
+ PK_Decryptor_MR_with_EME(const PK_Decrypting_Key& key,
+ const std::string& eme);
~PK_Decryptor_MR_with_EME() { delete encoder; }
private:
@@ -361,7 +365,8 @@ class BOTAN_DLL PK_Verifier_wo_MR : public PK_Verifier
* @param key the key to use inside the verifier
* @param emsa_name the name of the EMSA to use
*/
- PK_Verifier_wo_MR(const PK_Verifying_wo_MR_Key& key, const std::string& emsa_name);
+ PK_Verifier_wo_MR(const PK_Verifying_wo_MR_Key& key,
+ const std::string& emsa_name);
private:
PK_Verifier_wo_MR(const PK_Verifying_wo_MR_Key&);