diff options
author | lloyd <[email protected]> | 2010-06-21 22:06:21 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-06-21 22:06:21 +0000 |
commit | 2b1f7e7b700ae67c8c03a30aa123f59df00e9951 (patch) | |
tree | a088bff1e480b49077979efc98fcf3fffbfeb748 /src/pubkey | |
parent | cf669aa523bff00b2a342c32fb933a7270ed30b7 (diff) |
Doxygen
Diffstat (limited to 'src/pubkey')
-rw-r--r-- | src/pubkey/dl_algo/dl_algo.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/pubkey/dl_algo/dl_algo.h b/src/pubkey/dl_algo/dl_algo.h index 429bfb554..2cc632caa 100644 --- a/src/pubkey/dl_algo/dl_algo.h +++ b/src/pubkey/dl_algo/dl_algo.h @@ -67,7 +67,15 @@ class BOTAN_DLL DL_Scheme_PublicKey : public virtual Public_Key protected: DL_Scheme_PublicKey() {} + + /** + * The DL public key + */ BigInt y; + + /** + * The DL group + */ DL_Group group; }; @@ -94,6 +102,10 @@ class BOTAN_DLL DL_Scheme_PrivateKey : public virtual DL_Scheme_PublicKey, protected: DL_Scheme_PrivateKey() {} + + /** + * The DL private key + */ BigInt x; }; |