diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2019-04-13 22:06:32 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2019-04-13 22:06:32 +0000 |
commit | 2edcc76e9bd68195b5598a603d2741896cb75d6c (patch) | |
tree | e250ba18d505e200a26b57fcd489d21fec0092af /regress | |
parent | ff9f90c01f6916f68cb064d5f88d34cdd96161d8 (diff) |
Add a test for the bn_to_string() function introduced in v3_utl.c r1.32.
Diffstat (limited to 'regress')
-rw-r--r-- | regress/lib/libcrypto/bn/general/Makefile | 23 | ||||
-rw-r--r-- | regress/lib/libcrypto/bn/general/bn_to_string.c | 116 |
2 files changed, 133 insertions, 6 deletions
diff --git a/regress/lib/libcrypto/bn/general/Makefile b/regress/lib/libcrypto/bn/general/Makefile index d578d0fe120..d1a73a37693 100644 --- a/regress/lib/libcrypto/bn/general/Makefile +++ b/regress/lib/libcrypto/bn/general/Makefile @@ -1,11 +1,22 @@ -# $OpenBSD: Makefile,v 1.4 2017/01/21 09:38:58 beck Exp $ +# $OpenBSD: Makefile,v 1.5 2019/04/13 22:06:31 tb Exp $ .include "../../Makefile.inc" -PROG= bntest -LDADD= ${CRYPTO_INT} -DPADD= ${LIBCRYPTO} -WARNINGS= Yes -CFLAGS+= -Werror +PROGS += bntest +PROGS += bn_to_string + +LDADD = ${CRYPTO_INT} +DPADD = ${LIBCRYPTO} +WARNINGS = Yes +CFLAGS += -Werror + +.for p in ${PROGS} +REGRESS_TARGETS += run-$p + +run-$p: $p + ./$p + +.PHONY: run-$p +.endfor .include <bsd.regress.mk> diff --git a/regress/lib/libcrypto/bn/general/bn_to_string.c b/regress/lib/libcrypto/bn/general/bn_to_string.c new file mode 100644 index 00000000000..60b3ea31370 --- /dev/null +++ b/regress/lib/libcrypto/bn/general/bn_to_string.c @@ -0,0 +1,116 @@ +/* $OpenBSD: bn_to_string.c,v 1.1 2019/04/13 22:06:31 tb Exp $ */ +/* + * Copyright (c) 2019 Theo Buehler <tb@openbsd.org> + * + * Permission to use, copy, modify, and distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + */ + +#include <err.h> +#include <stdio.h> +#include <string.h> + +#include <openssl/bn.h> + +char *bn_to_string(const BIGNUM *bn); + +struct convert_st { + const char *input; + const char *expected; +}; + +struct convert_st testcases[] = { + {"0", "0"}, + {"-0", "-0"}, + {"7", "7"}, + {"-7", "-7"}, + {"8", "8"}, + {"-8", "-8"}, + {"F", "15"}, + {"-F", "-15"}, + {"10", "16"}, + {"-10", "-16"}, + {"7F", "127"}, + {"-7F", "-127"}, + {"80", "128"}, + {"-80", "-128"}, + {"FF", "255"}, + {"-FF", "-255"}, + {"100", "256"}, + {"7FFF", "32767"}, + {"-7FFF", "-32767"}, + {"8000", "32768"}, + {"-8000", "-32768"}, + {"FFFF", "65535"}, + {"-FFFF", "-65535"}, + {"10000", "65536"}, + {"-10000", "-65536"}, + {"7FFFFFFF", "2147483647"}, + {"-7FFFFFFF", "-2147483647"}, + {"80000000", "2147483648"}, + {"-80000000", "-2147483648"}, + {"FFFFFFFF", "4294967295"}, + {"-FFFFFFFF", "-4294967295"}, + {"100000000", "4294967296"}, + {"-100000000", "-4294967296"}, + {"7FFFFFFFFFFFFFFF", "9223372036854775807"}, + {"-7FFFFFFFFFFFFFFF", "-9223372036854775807"}, + {"8000000000000000", "9223372036854775808"}, + {"-8000000000000000", "-9223372036854775808"}, + {"FFFFFFFFFFFFFFFF", "18446744073709551615"}, + {"-FFFFFFFFFFFFFFFF", "-18446744073709551615"}, + {"10000000000000000", "18446744073709551616"}, + {"-10000000000000000", "-18446744073709551616"}, + {"7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF", + "170141183460469231731687303715884105727"}, + {"-7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF", + "-170141183460469231731687303715884105727"}, + {"80000000000000000000000000000000", + "0x80000000000000000000000000000000"}, + {"-80000000000000000000000000000000", + "-0x80000000000000000000000000000000"}, + {"FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF", + "0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"}, + {"-FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF", + "-0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"}, + {"100000000000000000000000000000000", + "0x0100000000000000000000000000000000"}, + {"-100000000000000000000000000000000", + "-0x0100000000000000000000000000000000"}, + { NULL, NULL }, +}; + +int +main(int argc, char *argv[]) +{ + struct convert_st *test; + BIGNUM *bn = NULL; + char *bnstr; + int failed = 0; + + for (test = testcases; test->input != NULL; test++) { + if (!BN_hex2bn(&bn, test->input)) + errx(1, "BN_hex2bn(%s)", test->input); + if ((bnstr = bn_to_string(bn)) == NULL) + errx(1, "bn_to_string(%s)", test->input); + if (strcmp(bnstr, test->expected) != 0) { + warnx("%s != %s", bnstr, test->expected); + failed = 1; + } + free(bnstr); + } + + BN_free(bn); + + printf("%s\n", failed ? "FAILED" : "SUCCESS"); + return failed; +} |