This app is about Cryptography using AES(Advanced Encryption Standard) algorithm.
The Key, IV(Initialization Vector) and Ciphertext in Base64 number system.
The key lengths or key size is 128 bit(AES-128), 192 bit(AES-192) and 256 bit(AES-256).
Using lib : --> using System.Security.Cryptography;
using System.Security.Cryptography;
aes.GenerateKey();
aes.GenerateIV();
This app to hashing text and file, as the result we got hashing text.
-SHA256 is 256 bits(32 bytes) with hexadecimal characters is 64.
-SHA512 is string with 128 hexadecimal character.
-MD5 got 32 hexadecimal char.
Using lib : --> using System.Security.Cryptography;
using System.Security.Cryptography;