diff options
author | lloyd <[email protected]> | 2008-10-01 15:17:52 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-10-01 15:17:52 +0000 |
commit | 92ddf6f0f8f0ef6f5584889481e4a098e280ee40 (patch) | |
tree | 4178ad93250da66d0eb18f9dfcce221bbb57bcd7 /src/pubkey/dh | |
parent | 1034cf44b4ee0948312c11a1b079b8b04c5828e2 (diff) |
Move last pieces of algorithm-specific code from general 'pubkey' module
into algorithm-specific directories. (Dependencies still remain on these
in core/libstate, though).
Diffstat (limited to 'src/pubkey/dh')
-rw-r--r-- | src/pubkey/dh/dh_op.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pubkey/dh/dh_op.h b/src/pubkey/dh/dh_op.h index 4fbd3f5dc..b19961452 100644 --- a/src/pubkey/dh/dh_op.h +++ b/src/pubkey/dh/dh_op.h @@ -26,7 +26,7 @@ class BOTAN_DLL DH_Operation /************************************************* * Botan's Default DH Operation * *************************************************/ -class Default_DH_Op : public DH_Operation +class BOTAN_DLL Default_DH_Op : public DH_Operation { public: BigInt agree(const BigInt& i) const { return powermod_x_p(i); } |