MCPcopy Create free account
hub / github.com/Maschell/JNUSTool / decrypt

Method decrypt

src/de/mas/jnustool/util/Decryption.java:82–90  ·  view source on GitHub ↗
(byte[] input)

Source from the content-addressed store, hash-verified

80 }
81
82 public byte[] decrypt(byte[] input){
83 try {
84 return cipher2.doFinal(input);
85 } catch (IllegalBlockSizeException | BadPaddingException e) {
86 e.printStackTrace();
87 System.exit(2);
88 }
89 return input;
90 }
91
92 public byte[] decrypt(byte[] input,int len){
93 return decrypt(input,0,len);

Callers 4

NUSTitleMethod · 0.95
downloadAndDecryptMethod · 0.95
calculateDecryptedKeyMethod · 0.95
decryptFileChunkMethod · 0.95

Calls 4

decryptStreamMethod · 0.95
isDirMethod · 0.80
getFileNameMethod · 0.80
getContentPathMethod · 0.45

Tested by

no test coverage detected