X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=tests%2Ftest-aes128.c;h=86f5521b623e79c6288580bc1f6ad6e46d0d805b;hb=0ef165ecb57943e17a8ee8270df68ffb8d032e29;hp=8a6c28cde04a05e1e87c901f8578a33be9813021;hpb=5f55c39b21e69025045437ffbd3bb98fe6ce2e89;p=sliver-openvswitch.git diff --git a/tests/test-aes128.c b/tests/test-aes128.c index 8a6c28cde..86f5521b6 100644 --- a/tests/test-aes128.c +++ b/tests/test-aes128.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2009 Nicira Networks. + * Copyright (c) 2009, 2010, 2013, 2014 Nicira, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -18,6 +18,7 @@ #include #include "aes128.h" #include "util.h" +#include "ovstest.h" static void hex_to_uint8(const char *input, uint8_t *output, size_t n) @@ -28,22 +29,21 @@ hex_to_uint8(const char *input, uint8_t *output, size_t n) goto error; } for (i = 0; i < n; i++) { - unsigned char hi = input[i * 2]; - unsigned char lo = input[i * 2 + 1]; + bool ok; - if (!isxdigit(hi) || !isxdigit(lo)) { + output[i] = hexits_value(&input[i * 2], 2, &ok); + if (!ok) { goto error; } - output[i] = (hexit_value(hi) << 4) + hexit_value(lo); } return; error: - ovs_fatal(0, "\"%s\" is not exactly %zu hex digits", input, n * 2); + ovs_fatal(0, "\"%s\" is not exactly %"PRIuSIZE" hex digits", input, n * 2); } -int -main(int argc, char *argv[]) +static void +test_aes128_main(int argc, char *argv[]) { struct aes128 aes; uint8_t plaintext[16]; @@ -65,6 +65,6 @@ main(int argc, char *argv[]) printf("%02x", ciphertext[i]); } putchar('\n'); - - return 0; } + +OVSTEST_REGISTER("test-aes128", test_aes128_main);