Add X509_NAME_hash_ex() to be able to check if it failed due to unsupported SHA1
[openssl.git] / doc / man3 / EVP_set_default_properties.pod
index 1981ff12c19a77bbf86a7290f8fc36230c1082ce..00404bd999afa774a0c943440b0f3fd366277be8 100644 (file)
@@ -10,9 +10,9 @@ EVP_default_properties_is_fips_enabled
 
  #include <openssl/evp.h>
 
- int EVP_set_default_properties(OPENSSL_CTX *libctx, const char *propq);
- int EVP_default_properties_enable_fips(OPENSSL_CTX *libctx, int enable);
- int EVP_default_properties_is_fips_enabled(OPENSSL_CTX *libctx);
+ int EVP_set_default_properties(OSSL_LIB_CTX *libctx, const char *propq);
+ int EVP_default_properties_enable_fips(OSSL_LIB_CTX *libctx, int enable);
+ int EVP_default_properties_is_fips_enabled(OSSL_LIB_CTX *libctx);
 
 =head1 DESCRIPTION
 
@@ -41,10 +41,10 @@ property for the given I<libctx>.
 =head1 RETURN VALUES
 
 EVP_set_default_properties() and  EVP_default_properties_enable_fips() return 1
-on success, or 0 on failure. An error is placed on the the error stack if a
+on success, or 0 on failure. An error is placed on the error stack if a
 failure occurs.
 
-EVP_default_properties_is_fips_enabled() returns 1 if the 'fips=true' default
+EVP_default_properties_is_fips_enabled() returns 1 if the 'fips=yes' default
 property is set for the given I<libctx>, otherwise it returns 0.
 
 =head1 SEE ALSO