decryptcore: preload OpenSSL error strings; seed PRNG
As in r360226, preload OpenSSL error strings and seed the PRNG before entering capability mode. MFC after: 2 weeks Sponsored by: Dell EMC Isilon
This commit is contained in:
parent
b516ac7435
commit
704d7c3af4
@ -170,6 +170,19 @@ decrypt(int ofd, const char *privkeyfile, const char *keyfile,
|
||||
goto failed;
|
||||
}
|
||||
|
||||
/*
|
||||
* Obsolescent OpenSSL only knows about /dev/random, and needs to
|
||||
* pre-seed before entering cap mode. For whatever reason,
|
||||
* RSA_pub_encrypt uses the internal PRNG.
|
||||
*/
|
||||
#if OPENSSL_VERSION_NUMBER < 0x10100000L
|
||||
{
|
||||
unsigned char c[1];
|
||||
RAND_bytes(c, 1);
|
||||
}
|
||||
#endif
|
||||
ERR_load_crypto_strings();
|
||||
|
||||
caph_cache_catpages();
|
||||
if (caph_enter() < 0) {
|
||||
pjdlog_errno(LOG_ERR, "Unable to enter capability mode");
|
||||
|
Loading…
Reference in New Issue
Block a user