summaryrefslogtreecommitdiff
path: root/source4/lib/crypto/crypto.h
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2006-08-11 08:02:43 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:15:28 -0500
commit0d235919fbb1430d52913df11da1f011a65ff319 (patch)
tree52f61b84020ad9ce5e0dc59d9f720c4e07b66fde /source4/lib/crypto/crypto.h
parentb26f4472a71b2a60c8120bd1307dbbd1e499fcbe (diff)
downloadsamba-0d235919fbb1430d52913df11da1f011a65ff319.tar.gz
samba-0d235919fbb1430d52913df11da1f011a65ff319.tar.bz2
samba-0d235919fbb1430d52913df11da1f011a65ff319.zip
r17488: - add SHA1 and HMACSHA1 functions, based on rfc 2104,2202,3174
- and add torture tests also based on the rfc's metze (This used to be commit d48930a02f9560640697fd57e4bba03dc0abe284)
Diffstat (limited to 'source4/lib/crypto/crypto.h')
-rw-r--r--source4/lib/crypto/crypto.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/source4/lib/crypto/crypto.h b/source4/lib/crypto/crypto.h
index 19457f60dc..ca6386e28c 100644
--- a/source4/lib/crypto/crypto.h
+++ b/source4/lib/crypto/crypto.h
@@ -18,10 +18,12 @@
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
-#include "lib/crypto/md5.h"
+#include "lib/crypto/crc32.h"
#include "lib/crypto/md4.h"
+#include "lib/crypto/md5.h"
#include "lib/crypto/hmacmd5.h"
-#include "lib/crypto/crc32.h"
+#include "lib/crypto/sha1.h"
+#include "lib/crypto/hmacsha1.h"
struct arcfour_state {
uint8_t sbox[256];