diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2014-11-19 20:02:55 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2014-11-19 20:02:55 +0000 |
commit | 29bc7cdd32d558c6555288eab1d7840b2c22d136 (patch) | |
tree | 9c1f4f83cb97dd885cdcae35917171f936a9c579 | |
parent | 3df86407e3f21fafdccd826f8ada547d95d09a8c (diff) |
do not need an ovbcopy replacement anymore
-rw-r--r-- | regress/sys/crypto/key_wrap/key_wrap_test.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/regress/sys/crypto/key_wrap/key_wrap_test.c b/regress/sys/crypto/key_wrap/key_wrap_test.c index 161ed20769b..6a78aee01ae 100644 --- a/regress/sys/crypto/key_wrap/key_wrap_test.c +++ b/regress/sys/crypto/key_wrap/key_wrap_test.c @@ -19,9 +19,6 @@ #include <crypto/rijndael.h> #include <crypto/key_wrap.h> -void -ovbcopy(const void *src, void *dst, size_t len); - static void print_hex(const char *str, unsigned char *buf, int len) { @@ -36,13 +33,6 @@ print_hex(const char *str, unsigned char *buf, int len) printf("\n"); } -void -ovbcopy(const void *src, void *dst, size_t len) -{ - /* userspace does not have ovbcopy: fake it */ - memmove(dst, src, len); -} - static void do_test(u_int kek_len, u_int data_len) { |