From 5b5fd6cc181865a2b1214c42a02d05cc8efc3e9f Mon Sep 17 00:00:00 2001 From: Krzysztof Wicher Date: Fri, 19 Jul 2024 21:28:38 +0200 Subject: [PATCH] update XML doc --- .../Cryptography/SafeEvpPKeyHandle.OpenSsl.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/libraries/System.Security.Cryptography/src/System/Security/Cryptography/SafeEvpPKeyHandle.OpenSsl.cs b/src/libraries/System.Security.Cryptography/src/System/Security/Cryptography/SafeEvpPKeyHandle.OpenSsl.cs index 64600e976a1a10..073e6b0fec5dda 100644 --- a/src/libraries/System.Security.Cryptography/src/System/Security/Cryptography/SafeEvpPKeyHandle.OpenSsl.cs +++ b/src/libraries/System.Security.Cryptography/src/System/Security/Cryptography/SafeEvpPKeyHandle.OpenSsl.cs @@ -198,10 +198,10 @@ public static SafeEvpPKeyHandle OpenPublicKeyFromEngine(string engineName, strin /// Open a named public key using a named OSSL_PROVIDER. /// /// - /// The name of the provider to process the key open request. + /// The name of the OSSL_PROVIDER to process the key open request. /// /// - /// The provider-assigned URI of the key to open. + /// The URI assigned by the OSSL_PROVIDER of the key to open. /// /// /// The opened key. @@ -213,19 +213,19 @@ public static SafeEvpPKeyHandle OpenPublicKeyFromEngine(string engineName, strin /// or is the empty string. /// /// - /// the key could not be opened via the specified provider. + /// the key could not be opened via the specified named OSSL_PROVIDER. /// /// /// /// Both and must be trusted inputs. /// /// - /// This operation will fail if OpenSSL cannot successfully load the named provider, - /// or if the named provider cannot load the named key. + /// This operation will fail if OpenSSL cannot successfully load the named OSSL_PROVIDER, + /// or if the named OSSL_PROVIDER cannot load the named key. /// /// /// The syntax for is determined by each individual - /// provider. + /// named OSSL_PROVIDER. /// /// [UnsupportedOSPlatform("android")]