How to Solve BANKEX/web3swift Error

CCCryptorFinal(cryptor, &outBytes + outLength , outBytes.count, &outLength).check() error:

Solution:

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

Read More: