I need to know how to encrypt a message in AES-OpenSSL and decrypt in .NET (C# or VB) OR Know what is the difference between AES-OPENSSL and AES-.NET
Thank you!
AES is AES. There are NIST test vectors that make sure that implementations are compatible, and the byte order has been specified as well. So it comes down to choosing the correct mode (e.g. CBC or the authenticated GCM mode) and padding mode (PKCS#7 for CBC and "none" for GCM). Choose the correct key and IV and you are on your way. Take extra care to understand the input of AES, especially make sure you understand encoding and character-encoding and random number generation.