skip to Main Content

Ios swift – AES/GCM/NoPadding encryption in Swift iOS (min deployment 12.1) doesn't produce expected ciphertext length

I'm implementing AES/GCM/NoPadding encryption in Swift for iOS with a minimum deployment target of 12.1. I'm trying to achieve similar functionality as my Java code below: Cipher cipherAes = initCipher(Cipher.ENCRYPT_MODE, key, iv); byte[] encryptedMessageByte = cipherAes.doFinal(messageBytes); byte[] cipherByte = ByteBuffer.allocate(iv.length…

VIEW QUESTION

React native – ITMS-91064 NSPrivacyTracking must be true if NSPrivacyTrackingDomains isn‘t empty. Keys and values

I have issue releasing a react-native project in appStore after I submit the app. I get rejection from Apple rejection msg: ITMS-91064: Invalid tracking information - A PrivacyInfo.xcprivacy file contains invalid tracking information at the following path: “Frameworks/SASDisplayKit.framework/PrivacyInfo.xcprivacy”. NSPrivacyTracking must…

VIEW QUESTION
Back To Top
Search