CVSROOT:        /cvs
Module name:    src
Changes by:     t...@cvs.openbsd.org    2022/12/03 01:05:52

Modified files:
        regress/lib/libcrypto/bn: bn_mod_exp.c 

Log message:
Fix some ancient silliness with a random byte

For nearly 25 years this test has attempted to generate random numbers of
bit length between 192 and 319 bits. Unfortunately, it used an unsigned
char so instead of generating numbers in the interval [-64..63] and add
them to 256, it used numbers in the intervals [0..63] and [192..255]...

Reply via email to