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

Method decryptFileChunk

src/de/mas/jnustool/util/Decryption.java:107–109  ·  view source on GitHub ↗
(byte[] blockBuffer, int BLOCKSIZE, byte[] IV)

Source from the content-addressed store, hash-verified

105
106 byte[] IV;
107 public byte[] decryptFileChunk(byte[] blockBuffer, int BLOCKSIZE, byte[] IV) {
108 return decryptFileChunk(blockBuffer,0,BLOCKSIZE, IV);
109 }
110
111 public byte[] decryptFileChunk(byte[] blockBuffer, int offset, int BLOCKSIZE, byte[] IV) {
112 if(IV != null) this.IV = IV;

Callers 2

decryptFileChunkHashMethod · 0.95
decryptFileMethod · 0.95

Calls 2

initMethod · 0.95
decryptMethod · 0.95

Tested by

no test coverage detected