diff --git a/src/libraries/System.Security.Cryptography.Primitives/src/System/Security/Cryptography/SymmetricAlgorithm.cs b/src/libraries/System.Security.Cryptography.Primitives/src/System/Security/Cryptography/SymmetricAlgorithm.cs index 857edc6d03c545..f5485577c07071 100644 --- a/src/libraries/System.Security.Cryptography.Primitives/src/System/Security/Cryptography/SymmetricAlgorithm.cs +++ b/src/libraries/System.Security.Cryptography.Primitives/src/System/Security/Cryptography/SymmetricAlgorithm.cs @@ -561,7 +561,7 @@ public bool TryDecryptEcb(ReadOnlySpan ciphertext, Span destination, /// is not a valid padding mode. /// /// - /// could not encrypt the plaintext. + /// The plaintext could not be encrypted successfully. /// /// /// This method's behavior is defined by . @@ -842,7 +842,7 @@ public bool TryDecryptCbc( /// that is exactly in length, converted to bytes (BlockSize / 8). /// /// - /// could not encrypt the plaintext. + /// The plaintext could not be encrypted successfully. /// /// /// This method's behavior is defined by . @@ -872,7 +872,7 @@ public byte[] EncryptCbc(byte[] plaintext, byte[] iv, PaddingMode paddingMode = /// that is exactly in length, converted to bytes (BlockSize / 8). /// /// - /// could not encrypt the plaintext. + /// The plaintext could not be encrypted successfully. /// /// /// This method's behavior is defined by .