diff options
author | lloyd <[email protected]> | 2008-11-08 19:01:32 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-11-08 19:01:32 +0000 |
commit | 5164d043709c1df2b7acd0fe09efe979d23a3e33 (patch) | |
tree | 4ad92bd8148e5dac8af85e338c212f4fd3701f8a /src/kdf | |
parent | a236130625cec42d3577293cc8eb571c7a8099f4 (diff) |
Move BufferedComputation to new buf_comp.{h,cpp}
Diffstat (limited to 'src/kdf')
-rw-r--r-- | src/kdf/mgf1/mgf1.cpp | 1 | ||||
-rw-r--r-- | src/kdf/ssl_prf/prf_ssl3.cpp | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/kdf/mgf1/mgf1.cpp b/src/kdf/mgf1/mgf1.cpp index c2cda7f4c..c54675c1e 100644 --- a/src/kdf/mgf1/mgf1.cpp +++ b/src/kdf/mgf1/mgf1.cpp @@ -5,6 +5,7 @@ #include <botan/mgf1.h> #include <botan/loadstor.h> +#include <botan/exceptn.h> #include <botan/xor_buf.h> #include <algorithm> #include <memory> diff --git a/src/kdf/ssl_prf/prf_ssl3.cpp b/src/kdf/ssl_prf/prf_ssl3.cpp index 29c29ba7e..3d4444613 100644 --- a/src/kdf/ssl_prf/prf_ssl3.cpp +++ b/src/kdf/ssl_prf/prf_ssl3.cpp @@ -4,6 +4,8 @@ *************************************************/ #include <botan/prf_ssl3.h> +#include <botan/symkey.h> +#include <botan/exceptn.h> #include <botan/sha160.h> #include <botan/md5.h> #include <memory> |