Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,7 @@ public bool TryDecryptEcb(ReadOnlySpan<byte> ciphertext, Span<byte> destination,
/// <paramref name="paddingMode" /> is not a valid padding mode.
/// </exception>
/// <exception cref="CryptographicException">
/// <see cref="TryEncryptEcbCore" /> could not encrypt the plaintext.
/// The plaintext could not be encrypted successfully.
/// </exception>
/// <remarks>
/// This method's behavior is defined by <see cref="TryEncryptEcbCore" />.
Expand Down Expand Up @@ -842,7 +842,7 @@ public bool TryDecryptCbc(
/// that is exactly <see cref="BlockSize" /> in length, converted to bytes (<c>BlockSize / 8</c>).
/// </exception>
/// <exception cref="CryptographicException">
/// <see cref="TryEncryptEcbCore" /> could not encrypt the plaintext.
/// The plaintext could not be encrypted successfully.
/// </exception>
/// <remarks>
/// This method's behavior is defined by <see cref="TryEncryptCbcCore" />.
Expand Down Expand Up @@ -872,7 +872,7 @@ public byte[] EncryptCbc(byte[] plaintext, byte[] iv, PaddingMode paddingMode =
/// that is exactly <see cref="BlockSize" /> in length, converted to bytes (<c>BlockSize / 8</c>).
/// </exception>
/// <exception cref="CryptographicException">
/// <see cref="TryEncryptEcbCore" /> could not encrypt the plaintext.
/// The plaintext could not be encrypted successfully.
/// </exception>
/// <remarks>
/// This method's behavior is defined by <see cref="TryEncryptCbcCore" />.
Expand Down