CVSROOT: /cvs Module name: src Changes by: clau...@cvs.openbsd.org 2022/04/19 13:01:19
Modified files: usr.sbin/rpki-client: encoding.c Log message: Do not use a hidden global for the EVP_ENCODE_CTX to save a calloc() call. Make this work concurrently by allocating and freeing the EVP_ENCODE_CTX for every call to base64_decode(). This is not a hot path so the impact is negligible. OK tb@