Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
testDecrypt
Method · 0.95
Calls
2
init
Method · 0.95
decryptString
Method · 0.95
Tested by
1
testDecrypt
Method · 0.76