MCPcopy Create free account
hub / github.com/0opslab/opslabJutil / decrypt

Method decrypt

src/main/java/com/opslab/util/encrypt/Blowfish.java:577–581  ·  view source on GitHub ↗
(String key, byte[] tt)

Source from the content-addressed store, hash-verified

575 }
576
577 public final static String decrypt(String key, byte[] tt) {
578 Blowfish bf2 = new Blowfish();
579 bf2.init(true, key.getBytes());
580 return bf2.decryptString(tt);
581 }
582
583
584}

Callers 1

testDecryptMethod · 0.95

Calls 2

initMethod · 0.95
decryptStringMethod · 0.95

Tested by 1

testDecryptMethod · 0.76