diff --git a/src/StevanFreeborn.Extensions.Configuration.Secure/Cryptography/ICryptoProvider.cs b/src/StevanFreeborn.Extensions.Configuration.Secure/Cryptography/ICryptoProvider.cs
index b9ff163..90a9263 100644
--- a/src/StevanFreeborn.Extensions.Configuration.Secure/Cryptography/ICryptoProvider.cs
+++ b/src/StevanFreeborn.Extensions.Configuration.Secure/Cryptography/ICryptoProvider.cs
@@ -9,13 +9,13 @@ public interface ICryptoProvider
/// Encrypts the provided plain text.
///
/// The unencrypted string to be encrypted.
- /// The encrypted cipher text.
+ /// The encrypted cipher text. If is null, empty, or whitespace, it is returned unchanged.
string Encrypt(string plainText);
///
/// Decrypts the provided cipher text.
///
/// The encrypted string to be decrypted.
- /// The decrypted plain text.
+ /// The decrypted plain text. If is null, empty, or whitespace, it is returned unchanged.
string Decrypt(string cipherText);
}
\ No newline at end of file