Inject SHA1 algorithm in flex

I am creating an application in Flex in which I need to encrypt the user ID and password using the SHA1 alias. I have not come across any standard Flex library that allows me to do this. Does anyone know how to achieve this in Flex?

Relationship Aparna

+3
source share
1 answer

I rode on my own in Haxe (starting with the C implementation) and it may be trivial to convert it to AS. However, it seems that now it is easily available in this implementation of SHA1 in as3 directly from corelib.

+4
source

Source: https://habr.com/ru/post/1779344/


All Articles