diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2012-02-05 15:31:05 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2012-02-07 01:11:07 +0100 |
commit | 9c000f1def6bb4f4254cca697f2dca143ea40291 (patch) | |
tree | c84380cf62e35df44a324a74ed9ae6154b5f453b | |
parent | fa0c2ab5c5c9081bc83787a50bf32ee1ca20a3d3 (diff) | |
download | samba-9c000f1def6bb4f4254cca697f2dca143ea40291.tar.gz |
crypto: Add prototype for main torture functions.
-rw-r--r-- | lib/crypto/hmacmd5test.c | 1 | ||||
-rw-r--r-- | lib/crypto/md4test.c | 1 | ||||
-rw-r--r-- | lib/crypto/md5test.c | 2 |
3 files changed, 4 insertions, 0 deletions
diff --git a/lib/crypto/hmacmd5test.c b/lib/crypto/hmacmd5test.c index a951409cadb..6db25269696 100644 --- a/lib/crypto/hmacmd5test.c +++ b/lib/crypto/hmacmd5test.c @@ -21,6 +21,7 @@ #include "../lib/crypto/crypto.h" struct torture_context; +bool torture_local_crypto_hmacmd5(struct torture_context *torture); static DATA_BLOB data_blob_repeat_byte(uint8_t byte, size_t length) { diff --git a/lib/crypto/md4test.c b/lib/crypto/md4test.c index 4ee05c1f8b0..dfdaef51b00 100644 --- a/lib/crypto/md4test.c +++ b/lib/crypto/md4test.c @@ -22,6 +22,7 @@ #include "../lib/crypto/crypto.h" struct torture_context; +bool torture_local_crypto_md4(struct torture_context *torture); /* This uses the test values from rfc1320 diff --git a/lib/crypto/md5test.c b/lib/crypto/md5test.c index 38e65317ff8..38626c39bce 100644 --- a/lib/crypto/md5test.c +++ b/lib/crypto/md5test.c @@ -23,6 +23,8 @@ struct torture_context; +bool torture_local_crypto_md5(struct torture_context *torture); + /* This uses the test values from rfc1321 */ |