skavinvarnan / Cross-Platform-AES

Simple cross-platform encryption and decryption using AES
MIT License
142 stars 70 forks source link

iOS 13 Decryption failure #32

Closed wtdu closed 4 years ago

wtdu commented 4 years ago

On iOS 13 devices, Handling decryption with the library's encrypted strings has consistently failed

ahsanghauri commented 4 years ago

29 please go through this

ArvindRajpurohit81 commented 4 years ago

If decryption is not working than look into

  1. last commit by developer.
  2. I solved above issue by replacing NSString hash=[out description] with NSString hash=[out debugDescription]; in CryptLib.m class. Now it is working fine. Sorry for any mistake this is my first comment.
shapljts commented 4 years ago

This was causing an issue for us with cross-platform iOS/Android and @arvind8192 's solution fixed it for us.

skavinvarnan commented 4 years ago

This issue has been fixed