Méthode | Description | |
---|---|---|
CreateCryptAuthKeysAndIv ( byte &cryptKey, byte &authKey, byte &iv ) : void | ||
CreateIv ( ) : byte[] | ||
CreateKey ( ) : byte[] | ||
CreateKeyAndIv ( byte &cryptKey, byte &iv ) : void | ||
CreateSymmetricAlgorithm ( ) : |
||
Decrypt ( byte encryptedBytes, byte cryptKey, byte iv ) : byte[] | ||
Decrypt ( string encryptedBase64, byte cryptKey, byte iv ) : string | ||
Encrypt ( byte bytesToEncrypt, byte cryptKey, byte iv ) : byte[] | ||
Encrypt ( string text, byte cryptKey, byte iv ) : string |
public static CreateCryptAuthKeysAndIv ( byte &cryptKey, byte &authKey, byte &iv ) : void | ||
cryptKey | byte | |
authKey | byte | |
iv | byte | |
Résultat | void |
public static CreateKeyAndIv ( byte &cryptKey, byte &iv ) : void | ||
cryptKey | byte | |
iv | byte | |
Résultat | void |
public static CreateSymmetricAlgorithm ( ) : |
||
Résultat |
public static Decrypt ( byte encryptedBytes, byte cryptKey, byte iv ) : byte[] | ||
encryptedBytes | byte | |
cryptKey | byte | |
iv | byte | |
Résultat | byte[] |
public static Decrypt ( string encryptedBase64, byte cryptKey, byte iv ) : string | ||
encryptedBase64 | string | |
cryptKey | byte | |
iv | byte | |
Résultat | string |
public static Encrypt ( byte bytesToEncrypt, byte cryptKey, byte iv ) : byte[] | ||
bytesToEncrypt | byte | |
cryptKey | byte | |
iv | byte | |
Résultat | byte[] |
public static Encrypt ( string text, byte cryptKey, byte iv ) : string | ||
text | string | |
cryptKey | byte | |
iv | byte | |
Résultat | string |