diff options
Diffstat (limited to 'src/pubkey')
-rw-r--r-- | src/pubkey/ecc_key/ecc_key.h | 2 | ||||
-rw-r--r-- | src/pubkey/ecdsa/ecdsa.h | 4 | ||||
-rw-r--r-- | src/pubkey/eckaeg/eckaeg.h | 6 |
3 files changed, 6 insertions, 6 deletions
diff --git a/src/pubkey/ecc_key/ecc_key.h b/src/pubkey/ecc_key/ecc_key.h index b2ca7dbcf..cb8f391b9 100644 --- a/src/pubkey/ecc_key/ecc_key.h +++ b/src/pubkey/ecc_key/ecc_key.h @@ -1,7 +1,7 @@ /************************************************* * ECDSA Header File * * (C) 2007 Falko Strenzke, FlexSecure GmbH * -* Manuel hartl, FlexSecure GmbH * +* Manuel Hartl, FlexSecure GmbH * * (C) 2008 Jack Lloyd * *************************************************/ diff --git a/src/pubkey/ecdsa/ecdsa.h b/src/pubkey/ecdsa/ecdsa.h index 4e9634f05..8176f4447 100644 --- a/src/pubkey/ecdsa/ecdsa.h +++ b/src/pubkey/ecdsa/ecdsa.h @@ -1,7 +1,7 @@ /************************************************* * ECDSA Header File * * (C) 2007 Falko Strenzke, FlexSecure GmbH * -* Manuel hartl, FlexSecure GmbH * +* Manuel Hartl, FlexSecure GmbH * * (C) 2008 Jack Lloyd * *************************************************/ @@ -43,7 +43,7 @@ class BOTAN_DLL ECDSA_PublicKey : public virtual EC_PublicKey, * @param sig_len the number of bytes in the signature byte array */ bool verify(const byte message[], u32bit mess_len, - const byte signature [], u32bit sig_len) const; + const byte signature[], u32bit sig_len) const; /** * Default constructor. Use this one if you want to later fill diff --git a/src/pubkey/eckaeg/eckaeg.h b/src/pubkey/eckaeg/eckaeg.h index 476ee6e70..609b13d79 100644 --- a/src/pubkey/eckaeg/eckaeg.h +++ b/src/pubkey/eckaeg/eckaeg.h @@ -1,7 +1,7 @@ /************************************************* * ECKAEG Header File * * (C) 2007 Falko Strenzke, FlexSecure GmbH * -* Manuel hartl, FlexSecure GmbH * +* Manuel Hartl, FlexSecure GmbH * * (C) 2008 Jack Lloyd * *************************************************/ @@ -24,7 +24,7 @@ class BOTAN_DLL ECKAEG_PublicKey : public virtual EC_PublicKey * Default constructor. Use this one if you want to later fill * this object with data from an encoded key. */ - ECKAEG_PublicKey() {}; + ECKAEG_PublicKey() {} /** * Construct a public key from a given public point. @@ -99,7 +99,7 @@ class BOTAN_DLL ECKAEG_PrivateKey : public ECKAEG_PublicKey, */ ECKAEG_PrivateKey() {} ECKAEG_PrivateKey(ECKAEG_PrivateKey const& other); - ECKAEG_PrivateKey const& operator= (ECKAEG_PrivateKey const& rhs); + ECKAEG_PrivateKey const& operator=(ECKAEG_PrivateKey const& rhs); void PKCS8_load_hook(bool = false); |