summaryrefslogtreecommitdiff
path: root/src/regress/lib/libcrypto/bn/bn_to_string.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Some more cleanup in bn_to_stringtb2023-04-101-12/+8
|
* Rework the bn_to_string() to use public APItb2023-04-101-73/+213
| | | | | | We can use the undocumented functions {i2s,s2i}_ASN1_INTEGER(3) to exercise bn_to_string(). This way we use public API and remove the need of linking statically.
* Revise for negative zero changes.jsing2023-02-131-2/+2
|
* Add a few missing headers and drop a few unused onestb2022-12-061-1/+2
| | | | In bn_test.c include bn_local.h instead of using copy-pasted prototypes.
* Flatten structure of libcrypto/bn teststb2022-12-011-0/+115
The bn tests were distributed into three subdirectories rather randomly. It's cleaner and easier to maintain if all this is in a single directory. Use consistent names for the .c files, unify handling of the tests with the exception of bn_test, which is special. Discussed with jsing