Alexis Wilke
Alexis Wilke

Reputation: 20730

Is there a replacement for ERR_load_SSL_strings() since it is deprecated?

Compiling one of my libraries on Ubuntu 22.04, I get a deprecated error on the ERR_load_SSL_strings() call. There is no comment other than the date when it was deprecated. Searching with Google doesn't return anything useful.

Is there a replacement to that function? or can we do without it now?

Upvotes: 2

Views: 1301

Answers (1)

Matt Caswell
Matt Caswell

Reputation: 9392

Is there a replacement to that function? or can we do without it now?

There is no replacement. You don't need to call it anymore. Error strings are loaded automatically since OpenSSL 1.1.0.

Upvotes: 4

Related Questions