skip to Main Content

ECIES encryption and EC key generation in Swift – Ios swift

Backend uses this java implementation for encrypting the data using public key(generated from iOS App in swift), Cipher iesCipher = Cipher.getInstance("ECIESwithAES-CBC"); byte[] derivation = Hex.decode(derivationString); byte[] encoding = Hex.decode(encodingString); byte[] nonce = Hex.decode(nonceString); IESParameterSpec params = new IESParameterSpec(derivation, encoding, 128,…

VIEW QUESTION
Back To Top
Search