aboutsummaryrefslogtreecommitdiffstats
path: root/src/pubkey/if_algo/if_algo.h
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-03-21 22:16:47 +0000
committerlloyd <[email protected]>2010-03-21 22:16:47 +0000
commit7aa5107be73de3b214301dbf647b1a0c41ec65eb (patch)
tree613e8829c5e8ce5826113d0c15c3a99daa7b5bb7 /src/pubkey/if_algo/if_algo.h
parentc23ae85c0529071b3170e88d361342d6a792f417 (diff)
Move where pk_ops is included, remove rng.h from dl_algo.h
Diffstat (limited to 'src/pubkey/if_algo/if_algo.h')
-rw-r--r--src/pubkey/if_algo/if_algo.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/pubkey/if_algo/if_algo.h b/src/pubkey/if_algo/if_algo.h
index 65bb8aed4..764a99e13 100644
--- a/src/pubkey/if_algo/if_algo.h
+++ b/src/pubkey/if_algo/if_algo.h
@@ -11,7 +11,6 @@
#include <botan/bigint.h>
#include <botan/x509_key.h>
#include <botan/pkcs8.h>
-#include <botan/pk_ops.h>
namespace Botan {
@@ -35,13 +34,11 @@ class BOTAN_DLL IF_Scheme_PublicKey : public virtual Public_Key
MemoryVector<byte> x509_subject_public_key() const;
/**
- * Get n = p * q.
- * @return n
+ * @return the public modulus
*/
const BigInt& get_n() const { return n; }
/**
- * Get the public exponent used by the key.
* @return the public exponent
*/
const BigInt& get_e() const { return e; }