Skip to content

Commit

Permalink
更新
Browse files Browse the repository at this point in the history
  • Loading branch information
Forevery1 committed Sep 29, 2017
1 parent b25d0b5 commit bd144d8
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@

public class RC4_Utils {

/**
* @param data 数据
* @param key 密钥
* @return String
*/

private String Decry(byte[] data, String key) {
if (data == null || key == null) {
return null;
Expand Down

0 comments on commit bd144d8

Please sign in to comment.