CVSROOT: /cvs Module name: src Changes by: t...@cvs.openbsd.org 2022/12/18 05:22:30
Modified files: usr.sbin/acme-client: acctproc.c Log message: acme-client: switch op_sign() to EVP_DigestSign() EVP_DigestSign() is a bit more ergonomic than the old EVP_Sign* family, it takes size_t instead of int and and it also allows allocating the memory needed instead of relying on some weird estimate. This again gets rid of a few stupid else if. ok jsing