diff options
author | lloyd <[email protected]> | 2008-09-28 20:42:35 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-09-28 20:42:35 +0000 |
commit | 3ed23593a56fdb6f98516d99ab738e2f7675b4ec (patch) | |
tree | abe6655504bf920ddc5b64530c76474aa2a980b7 | |
parent | 062e7a3dc98af064792967cfac44f61b0e7b0d8a (diff) |
Formatting
-rw-r--r-- | src/pk_algs.cpp | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/src/pk_algs.cpp b/src/pk_algs.cpp index d400d5b74..83ceb61c7 100644 --- a/src/pk_algs.cpp +++ b/src/pk_algs.cpp @@ -6,27 +6,27 @@ #include <botan/pk_algs.h> #ifdef BOTAN_HAS_RSA -#include <botan/rsa.h> + #include <botan/rsa.h> #endif #ifdef BOTAN_HAS_DSA -#include <botan/dsa.h> + #include <botan/dsa.h> #endif #ifdef BOTAN_HAS_DH -#include <botan/dh.h> + #include <botan/dh.h> #endif #ifdef BOTAN_HAS_NR -#include <botan/nr.h> + #include <botan/nr.h> #endif #ifdef BOTAN_HAS_RW -#include <botan/rw.h> + #include <botan/rw.h> #endif #ifdef BOTAN_HAS_ELGAMAL -#include <botan/elgamal.h> + #include <botan/elgamal.h> #endif namespace Botan { @@ -60,7 +60,6 @@ Public_Key* get_public_key(const std::string& alg_name) if(alg_name == "ELG") return new ElGamal_PublicKey; #endif - return 0; } @@ -93,7 +92,6 @@ Private_Key* get_private_key(const std::string& alg_name) if(alg_name == "ELG") return new ElGamal_PrivateKey; #endif - return 0; } |