I am building an application in Flex, wherein I need to encrypt user id and password using the SHA1 alogorithm. I have not come across any standard Flex library which allows me to do this. Does anyone know how to achieve this in Flex?

Regards Aparna

link|improve this question

0% accept rate
Be aware that using SHA1 to run the username and password through is not "encryption." SHA1 is a hash function and you will at minimum need to salt the data you are running through it. – martineno Dec 9 '10 at 7:46
feedback

1 Answer

I rolled my own long ago in Haxe (starting from a C implementation) and could be trivial to convert that to AS. However seems that this is now easily available in this SHA1 implementation in as3 directly from corelib.

link|improve this answer
+1 on SHA1 from as3core library. – martineno Dec 9 '10 at 7:43
-1 for corelib. vote for this blooddy.by/en/crypto – Pavel fljōt Dec 9 '10 at 15:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.