MCPcopy Create free account
hub / github.com/FongMi/TV / md5

Method md5

quickjs/src/main/java/com/fongmi/quickjs/utils/Crypto.java:20–27  ·  view source on GitHub ↗
(String text)

Source from the content-addressed store, hash-verified

18public class Crypto {
19
20 public static String md5(String text) {
21 try {
22 return Util.md5(text);
23 } catch (Exception e) {
24 e.printStackTrace();
25 return "";
26 }
27 }
28
29 public static String aes(String mode, boolean encrypt, String input, boolean inBase64, String key, String iv, boolean outBase64) {
30 try {

Callers 1

md5XMethod · 0.95

Calls 1

md5Method · 0.95

Tested by

no test coverage detected