When i try to log in my application on android appear this error on password " %3A+ssl+library+not+found".
On pc working well just on mobile appear this.
For encrypt password i used this function:
Code: Select all
function EncryptIt pItem
   local tHex, tKeyHex
   put "8822992277392018" into tKeyHex
   put "9382377475757343" into tIVHex
   encrypt pItem using "aes-128-cbc" with key tKeyHex and IV tIVHex at 128 bit
   put it into tValue
   if the result is Empty then
      return base64Encode ( tValue )
   else
      return "Error:" && the result
   end if
end EncryptIt
Thank you!
