CCCryptorFinal(cryptor, &outBytes + outLength , outBytes.count, &outLength).check() error:
Solution:
Use CCCryptorFinal(cryptor, (&outBytes + outLength) as UnsafeMutableRawPointer, outBytes.count, &outLength).check()
CCCryptorFinal(cryptor, &outBytes + outLength , outBytes.count, &outLength).check() error:
Solution:
Use CCCryptorFinal(cryptor, (&outBytes + outLength) as UnsafeMutableRawPointer, outBytes.count, &outLength).check()