public static string Decrypt(string encryptedValue)
        {
            Check.Argument.IsNotNullOrEmpty(encryptedValue, "encryptedValue");

            return(InternalCryptography.Decrypt(encryptedValue));
        }