CVSROOT: /cvs Module name: src Changes by: [email protected] 2023/02/04 07:00:18
Modified files:
lib/libcrypto/bn/arch/amd64: bn_arch.c bn_arch.h
Log message:
Remove bn_sqr_words() on amd64.
s2n-bignum's bignum_sqr() is not the same as bn_sqr_words() (which only
computes a partial result, unlike the former). This went unnoticed since
bn_sqr() is called directly on amd64, hence bn_sqr_words() is currently
unused.
