Method | Description | |
---|---|---|
Decrypt ( ICryptoTransform transform, byte buffer ) : byte[] | ||
Encrypt ( ICryptoTransform transform, byte buffer ) : byte[] | ||
PasswordDecrypt ( string password, string text, byte salt ) : string | ||
PasswordEncrypt ( string password, string text, byte salt ) : string |
public static Decrypt ( ICryptoTransform transform, byte buffer ) : byte[] | ||
transform | ICryptoTransform | |
buffer | byte | |
return | byte[] |
public static Encrypt ( ICryptoTransform transform, byte buffer ) : byte[] | ||
transform | ICryptoTransform | |
buffer | byte | |
return | byte[] |
public static PasswordDecrypt ( string password, string text, byte salt ) : string | ||
password | string | |
text | string | |
salt | byte | |
return | string |
public static PasswordEncrypt ( string password, string text, byte salt ) : string | ||
password | string | |
text | string | |
salt | byte | |
return | string |