I am implementing a cloud solution for an extension to my companies automated call system. To do so, I need to encrypt the user data that is communicated between our on premises database and Amazon Web Service. I have implemented AES encryption on both sides but found that our Cisco JRE is running Java 7 and requires that I update our JRE to allow Unlimited Strength Cryptography.
My solution was found here: Java Security: Illegal key size or default parameters?
Based off of my research, I do not foresee any problems updating this policy as this is essentially removing a "MAX_LENGTH" global variable. But as this is my first time delving into this type of java development I want to double check. Are there any considerations or potential issues that I may encounter when updating our Java 7 JRE security policy to Unlimited Strength Cryptography?