diff --git a/src/sbattach.c b/src/sbattach.c index dd03faf..a0c01b8 100644 --- a/src/sbattach.c +++ b/src/sbattach.c @@ -44,6 +44,7 @@ #include +#include #include #include #include @@ -232,6 +233,7 @@ int main(int argc, char **argv) ERR_load_crypto_strings(); OpenSSL_add_all_digests(); + OPENSSL_config(NULL); /* here we may get highly unlikely failures or we'll get a * complaint about FIPS signatures (usually becuase the FIPS * module isn't present). In either case ignore the errors diff --git a/src/sbkeysync.c b/src/sbkeysync.c index b379c1c..9ce9f07 100644 --- a/src/sbkeysync.c +++ b/src/sbkeysync.c @@ -47,6 +47,7 @@ #include #include +#include #include #include @@ -930,6 +931,7 @@ int main(int argc, char **argv) ERR_load_crypto_strings(); OpenSSL_add_all_digests(); OpenSSL_add_all_ciphers(); + OPENSSL_config(NULL); /* here we may get highly unlikely failures or we'll get a * complaint about FIPS signatures (usually becuase the FIPS * module isn't present). In either case ignore the errors diff --git a/src/sbsign.c b/src/sbsign.c index b5d2aaa..406472e 100644 --- a/src/sbsign.c +++ b/src/sbsign.c @@ -42,6 +42,7 @@ #include +#include #include #include #include @@ -183,6 +184,7 @@ int main(int argc, char **argv) ERR_load_crypto_strings(); OpenSSL_add_all_digests(); OpenSSL_add_all_ciphers(); + OPENSSL_config(NULL); /* here we may get highly unlikely failures or we'll get a * complaint about FIPS signatures (usually becuase the FIPS * module isn't present). In either case ignore the errors diff --git a/src/sbvarsign.c b/src/sbvarsign.c index fbfe81a..b45cccb 100644 --- a/src/sbvarsign.c +++ b/src/sbvarsign.c @@ -45,6 +45,7 @@ #include #include +#include #include #include #include @@ -506,6 +507,7 @@ int main(int argc, char **argv) OpenSSL_add_all_digests(); OpenSSL_add_all_ciphers(); ERR_load_crypto_strings(); + OPENSSL_config(NULL); /* here we may get highly unlikely failures or we'll get a * complaint about FIPS signatures (usually becuase the FIPS * module isn't present). In either case ignore the errors diff --git a/src/sbverify.c b/src/sbverify.c index a030b24..27fbb6f 100644 --- a/src/sbverify.c +++ b/src/sbverify.c @@ -48,6 +48,7 @@ #include "idc.h" #include "fileio.h" +#include #include #include #include @@ -224,6 +225,7 @@ int main(int argc, char **argv) OpenSSL_add_all_digests(); ERR_load_crypto_strings(); + OPENSSL_config(NULL); /* here we may get highly unlikely failures or we'll get a * complaint about FIPS signatures (usually becuase the FIPS * module isn't present). In either case ignore the errors