Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/02/12 19:59:51 (12 years ago)
Author:
ascheibe
Message:

#1809 fixed capitalization of string

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Clients.Common/3.3/CryptoService.cs

    r7690 r7691  
    3232    private static byte[] entropy = System.Text.Encoding.Unicode.GetBytes("Salt Is Not A Password");
    3333
    34     public static string EncryptString(String input) {
     34    public static string EncryptString(string input) {
    3535      byte[] encryptedData = ProtectedData.Protect(
    3636        Encoding.Unicode.GetBytes(input),
     
    4040    }
    4141
    42     public static String DecryptString(string encryptedData) {
     42    public static string DecryptString(string encryptedData) {
    4343      try {
    4444        byte[] decryptedData = System.Security.Cryptography.ProtectedData.Unprotect(
Note: See TracChangeset for help on using the changeset viewer.