- Home /
Does Unity have any symmetric crypto libraries?
It seems that Mono's System.Security.Cryptography part is freaking small. No AES, no blowfish, not even RC4.
Are there tested implementations of any of those for Unity? And, if not, if there at least a good HMAC implementation, which isn't included into the box as well.
Answer by Rabbit-Stew-dio · Dec 05, 2012 at 12:21 AM
According to the Mono-Compatibility list, Unity supports everything mentioned in the .NET documentation in MSDN. Among the symmetric algorithms, RC2, Rijndael, DES- and TripleDES-CryptoServiceProvider are supported in all profiles.
If you prefer HashCodes: SHA-1 & co are supported too.
I'm dumb, somehow I didn't find any of those. Thought they all are a part of some other namespace, inside Cryptography.
Thanks!
Your answer
Follow this Question
Related Questions
Security and crypt 1 Answer
Problem With Saving And Cryptography with AES 1 Answer
Sha1/2 encryption on Unity 4.2? 2 Answers
using System.Security.Cryptography; 1 Answer
HMACSHA1 in export to flash 0 Answers