-
Notifications
You must be signed in to change notification settings - Fork 440
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not able to compile on Xcode version 12.2 #293
Comments
Do you have any good solutions? |
I tried lot but unfortunatly the only current solution is to rollback on Xcode 11.7 |
OK, thanks |
@ravi-ranjan-oodles thanks for the update. Feel free to update it if you will find any solution with the new version of Xcode |
|
The issue is coming on the AES.swift file which is :
"Inout expression creates a temporary pointer, but argument #1 should be a pointer that outlives the call to '+'"
try CCCryptorFinal(cryptor, **&outBytes + outLength**, outBytes.count, &outLength).check()
In Xcode 11.7 it was just a warning but in Xcode 12 it becomes an error if we use
try CCCryptorFinal(cryptor, &outBytes, outBytes.count, &outLength).check()
Everything works fine but unable to get the private key.
The text was updated successfully, but these errors were encountered: