RageLib.Cryptography.AesEncryption - indilo53/gta-toolkit GitHub Wiki
Represents an AES encryption algorithm.
namespace: RageLib.Cryptography
Inheritance Hierarchy
Syntax
public class AesEncryption : IEncryptionAlgorithm
Constructors
| :white_large_square: |
prototype |
description |
| method |
AesEncryption (byte[] key, int rounds=1) |
__ |
Properties
| :white_large_square: |
name |
description |
| property |
Key |
__ |
| property |
Rounds |
__ |
Methods
| :white_large_square: |
prototype |
description |
| method |
[] Decrypt(byte[] data) |
Decrypts data. |
| method |
[] DecryptData(byte[] data, byte[] key, int rounds=1) |
Decrypts data. |
| method |
[] Encrypt(byte[] data) |
Encrypts data. |
| method |
[] EncryptData(byte[] data, byte[] key, int rounds=1) |
Encrypts data. |
Events
| :white_large_square: |
name |
description |