diff options
author | Rob Austein <sra@hactrn.net> | 2015-06-21 23:08:51 -0400 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2015-06-21 23:08:51 -0400 |
commit | a3b7050c53a27d4cfeb350fb86e738f623e99e0c (patch) | |
tree | 4bd268b23697c8544a8e130fdef04af34b3dba10 /tests | |
parent | 4dd62d61e4da99f2c6f905f2700208bfc2e6a0ff (diff) |
libcryptech -> libhal, doh.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile.in | 4 | ||||
-rw-r--r-- | tests/test-aes-key-wrap.c | 2 | ||||
-rw-r--r-- | tests/test-hash.c | 2 | ||||
-rw-r--r-- | tests/test-pbkdf2.c | 2 | ||||
-rw-r--r-- | tests/test-rsa.c | 3 |
5 files changed, 7 insertions, 6 deletions
diff --git a/tests/Makefile.in b/tests/Makefile.in index b5801d9..0a98792 100644 --- a/tests/Makefile.in +++ b/tests/Makefile.in @@ -27,8 +27,8 @@ # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -INC = ../cryptech.h -LIB = ../libcryptech.a +INC = ../hal.h +LIB = ../libhal.a BIN = test-aes-key-wrap test-hash test-pbkdf2 test-rsa CC = @CC@ diff --git a/tests/test-aes-key-wrap.c b/tests/test-aes-key-wrap.c index cebdcc7..f8467ec 100644 --- a/tests/test-aes-key-wrap.c +++ b/tests/test-aes-key-wrap.c @@ -38,7 +38,7 @@ #include <string.h> #include <assert.h> -#include <cryptech.h> +#include <hal.h> #ifndef TC_BUFSIZE #define TC_BUFSIZE 4096 diff --git a/tests/test-hash.c b/tests/test-hash.c index d5a5a14..befdf02 100644 --- a/tests/test-hash.c +++ b/tests/test-hash.c @@ -38,7 +38,7 @@ #include <string.h> #include <assert.h> -#include <cryptech.h> +#include <hal.h> /* Usual NIST sample messages. */ diff --git a/tests/test-pbkdf2.c b/tests/test-pbkdf2.c index 5403612..469b599 100644 --- a/tests/test-pbkdf2.c +++ b/tests/test-pbkdf2.c @@ -42,7 +42,7 @@ #include <unistd.h> #include <sys/ioctl.h> -#include "cryptech.h" +#include <hal.h> /* PBKDF2 HMAC-SHA-1 test cases from RFC 6070. */ diff --git a/tests/test-rsa.c b/tests/test-rsa.c index 03ea8bb..fb53f69 100644 --- a/tests/test-rsa.c +++ b/tests/test-rsa.c @@ -47,7 +47,8 @@ #include <sys/time.h> -#include "cryptech.h" +#include <hal.h> + #include "test-rsa.h" /* |