when using a custom domain in Android SDK I get the following error, OPENSSL_internal:BAD_DECRYPT
The error "OPENSSL_internal:BAD_DECRYPT" typically indicates an issue with the decryption process, which could be due to incorrect encryption keys or initialization vectors (IVs). Here are a few steps to troubleshoot and resolve this issue: 1. *Verify Encryption Keys and IVs*: Ensure that the encryption key and IV you are using are correct and match the ones used during the encryption process. 2. *Check the Command Syntax*: Make sure the command you are using to decrypt the data is correctly formatted. Here is an example command for decrypting a .dat file using OpenSSL: ``` openssl aes-256-ctr -d -e -in /path/to/kinde_export.dat -out /path/to/kinde_export.zip -nosalt -p -K YOUR_ENCRYPTION_KEY -iv YOUR_ENCRYPTION_IV ``` 3. *Correct File Paths*: Ensure that the file paths specified in the command are correct and accessible. 4. *Re-check the Custom Domain Setup*: Ensure that your custom domain is correctly set up in Kinde and that all DNS records are properly configured. Refer to the for detailed instructions. 5. *Update Your App Configuration*: Make sure your app's configuration is updated to use the custom domain. This includes updating the callback URLs and other relevant settings in your AndroidManifest.xml file. If you continue to experience issues, please provide more details about the steps you have taken and any additional error messages you are seeing.