Skip to content

Commit 489b767

Browse files
Update DesEncryptUtil.java
1 parent 77fdf94 commit 489b767

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/com/gotech/tv/launcher/util/DesEncryptUtil.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public class DesEncryptUtil {
1010
Key key;
1111

1212
//加密
13-
public String jiaMi(String s,String key){
13+
public String encrypt(String s,String key){
1414
String str = "";
1515
int ch;
1616
if(key.length() == 0){
@@ -32,7 +32,7 @@ else if(!s.equals(null)){
3232

3333
}
3434
//解密
35-
public String jieMi(String s,String key){
35+
public String decode(String s,String key){
3636
String str = "";
3737
int ch;
3838
if(key.length() == 0){

0 commit comments

Comments
 (0)