diff options
author | lloyd <[email protected]> | 2008-10-13 20:19:28 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-10-13 20:19:28 +0000 |
commit | 9a669d9c4de4122d459d9785ae8645bdaf6bade2 (patch) | |
tree | 271272e58b18559b8fe81d63722f0f388bb4997e /src/pubkey/ecdsa | |
parent | e21ac3a33cde261736529fed8a1f34b2a1aaf236 (diff) |
Remove spurious trailing ; after blocks
Diffstat (limited to 'src/pubkey/ecdsa')
-rw-r--r-- | src/pubkey/ecdsa/ecdsa.h | 4 |
1 files changed, 2 insertions, 2 deletions
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 |