
I am trying to run a jar file and I get this error. Error encrypting/decrypting file net.codejava.crypto.CryptoException: Error encrypting/decrypting file Caused by: java.security.InvalidKeyException: Invalid AES key length: 17 bytes at net.codejava.crypto.CryptoUtils.doCrypto(CryptoUtils.java:57) at net.codejava.crypto.CryptoUtils.encrypt(CryptoUtils.java:27) at net.codejava.crypto.CryptoUtilsTest.main(CryptoUtilsTest.java:18) Caused by: java.security.InvalidKeyException: Invalid AES key length: 17 bytes at java.base/com.sun.crypto.provider.AESCrypt.makeSessionKey(AESCrypt.java:1329) at java.base/com.sun.crypto.provider.AESCrypt.init(AESCrypt.java:1053) at java.base/com.sun.crypto.provider.ElectronicCodeBook.init(ElectronicCodeBook.java:97) at java.base/com.sun.crypto.provider.CipherCore.init(CipherCore.java:481) at java.base/com.sun.crypto.provider.CipherCore.init(CipherCore.java:399) at java.base/com.sun.crypto.provider.AESCipher.engineInit(AESCipher.java:311) at java.base/javax.crypto.Cipher.implInit(Cipher.java:872) at java.base/javax.crypto.Cipher.chooseProvider(Cipher.java:934) at java.base/javax.crypto.Cipher.init(Cipher.java:1313) at java.base/javax.crypto.Cipher.init(Cipher.java:1246) at net.codejava.crypto.CryptoUtils.doCrypto(CryptoUtils.java:40) ... 2 more what do i do? It is working perfectly fine in my workspace but showing errors when I run the actual jar file.

Trending nowThis is a popular solution!
Step by stepSolved in 2 steps

- Open the Palace Solution.sln file contained in the VB2017\Chap10\Palace Solution folder. Use Windows to copy the Rectangle.vb file from the VB2017\Chap10 folder to the Palace Project folder. Then, use the Add Existing Item option on the Project menu to add the file to the project. Modify the Rectangle class to use Double variables rather than Integer variables. Change the name of the GetArea method to GetAreaSqFt. Add another method to the class. Use Get AreaSqYds as the method’s name. The method should calculate and return the area of a rectangle in square yards. The application’s Calculate button should calculate and display the number of square yards of carpeting needed to carpet a rectangular floor. Code the btnCalc_Click procedure. Display the number of yards with one decimal place. Save the solution and then start and test the application.arrow_forwardIn the game Rock paper Scissors, two players simultaneously choose one of three options: rock, paper, or scissors. If both players choose the same option, then the result is a tie. However, if they choose differently, the winner is determined as follows: Rock beats scissors, because a rock can break a pair of scissors. Scissors beats paper, because scissors can cut paper. Paper beats rock, because a piece of paper can cover a rock. Create a game in which the computer randomly chooses rock, paper, or scissors. Let the user enter a character, r, p, or s, each representing one of the three choices. Then, determine the winner. Save the application as RockPaperScissors.cs.arrow_forwardCreate a program named FileComparison that compares two files. First, use a text editor such as Notepad to save your favorite movie quote. Next, copy the file contents, and paste them into a word-processing program such as Word. Then, write the file-comparison application that displays the sizes of the two files as well as the ratio of their sizes to each other. To discover a files size, you can create a System. 10. Filelnfo object using statements such as the following, where FILE_NAME is a string that contains the name of the file, and size has been declared as an integer: FileInfo fileInfo = new FileInfo(FILE_NAME); size = fileInfo.Length;arrow_forward
- EBK JAVA PROGRAMMINGComputer ScienceISBN:9781337671385Author:FARRELLPublisher:CENGAGE LEARNING - CONSIGNMENTMicrosoft Visual C#Computer ScienceISBN:9781337102100Author:Joyce, Farrell.Publisher:Cengage Learning,C++ Programming: From Problem Analysis to Program...Computer ScienceISBN:9781337102087Author:D. S. MalikPublisher:Cengage Learning
- EBK JAVA PROGRAMMINGComputer ScienceISBN:9781305480537Author:FARRELLPublisher:CENGAGE LEARNING - CONSIGNMENTCOMPREHENSIVE MICROSOFT OFFICE 365 EXCEComputer ScienceISBN:9780357392676Author:FREUND, StevenPublisher:CENGAGE LProgramming Logic & Design ComprehensiveComputer ScienceISBN:9781337669405Author:FARRELLPublisher:Cengage



