国产片侵犯亲女视频播放_亚洲精品二区_在线免费国产视频_欧美精品一区二区三区在线_少妇久久久_在线观看av不卡

服務器之家:專注于服務器技術及軟件下載分享
分類導航

PHP教程|ASP.NET教程|Java教程|ASP教程|編程技術|正則表達式|C/C++|IOS|C#|Swift|Android|VB|R語言|JavaScript|易語言|vb.net|

服務器之家 - 編程語言 - Java教程 - Java實現的3des加密解密工具類示例

Java實現的3des加密解密工具類示例

2021-01-25 11:19CharlinGod Java教程

這篇文章主要介紹了Java實現的3des加密解密工具類,結合完整實例形式分析了3des加密解密的具體步驟與相關操作技巧,需要的朋友可以參考下

本文實例講述了Java實現的3des加密解密工具類。分享給大家供大家參考,具體如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
package com.gcloud.common;
import org.apache.poi.poifs.property.Child;
import org.bouncycastle.jce.provider.BouncyCastleProvider;
import javax.crypto.*;
import javax.crypto.spec.IvParameterSpec;
import javax.crypto.spec.SecretKeySpec;
import java.io.BufferedReader;
import java.io.File;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.URL;
import java.security.*;
import java.security.spec.AlgorithmParameterSpec;
/**
 * 三重數據加密算法工具類
 * Created by charlin on 2017/9/11.
 */
public class V3DESUtil {
  //密鑰存放位置
  public static String FILENAME = "d:/3des.key";
  // 1為加密,0為解密
  private int isEncrypt = -1;
  // 加密/解密密鑰,長度為16byte或者24byte。
  private String keyStr;
  // 要加密/解密信息(解密時需為十六進制顯示的字符串)
  private String message;
  public V3DESUtil() {
  }
  public V3DESUtil(int isEncrypt, String keyStr, String message) {
    this.isEncrypt = isEncrypt;
    this.keyStr = keyStr;
    this.message = message;
  }
  //numStr = 12345678
  public String V3DESChiper(String numStr) {
    String result = null;
    try {
      Security.addProvider(new BouncyCastleProvider());
      URL url = getClass().getResource(FILENAME);
      File myFile = new File(FILENAME);
      if (!myFile.exists()) {
        return "Can't Find " + FILENAME;
      }
      try {
        BufferedReader in = new BufferedReader(new InputStreamReader(url.openStream()));
        while ((keyStr = in.readLine()) == null) {
          return "讀取密鑰失敗!";
        }
        in.close();
      } catch (IOException e) {
        e.printStackTrace();
      }
      SecretKey key = new SecretKeySpec(keyStr.getBytes(), "DESede");
      result = null;
      byte[] textByte = null;
      byte[] messageByte = null;
      Cipher cipher = Cipher.getInstance("DESede/CBC/PKCS5Padding", "BC");
      AlgorithmParameterSpec spec = new IvParameterSpec(numStr.getBytes());
      if (isEncrypt == 1) {
        messageByte = message.getBytes();
        cipher.init(Cipher.ENCRYPT_MODE, key, spec);
      } else if (isEncrypt == 0) {
        messageByte = decodeHex(message);
        cipher.init(Cipher.DECRYPT_MODE, key, spec);
      } else {
        return "加解密設置錯誤,請確認輸入:1為加密;0為解密";
      }
      textByte = cipher.doFinal(messageByte);
      if (isEncrypt == 1) {
        result = encodeHex(textByte);
      } else if (isEncrypt == 0) {
        result = new String(textByte);
      }
    } catch (Exception e) {
      e.printStackTrace();
    }
    return result;
  }
  public static final String encodeHex(byte bytes[]) {
    StringBuffer buf = new StringBuffer(bytes.length * 2);
    for (int i = 0; i < bytes.length; i++) {
      if ((bytes[i] & 0xff) < 16)
        buf.append("0");
      buf.append(Long.toString(bytes[i] & 0xff, 16));
    }
    return buf.toString();
  }
  public static final byte[] decodeHex(String hex) {
    char chars[] = hex.toCharArray();
    byte bytes[] = new byte[chars.length / 2];
    int byteCount = 0;
    for (int i = 0; i < chars.length; i += 2) {
      int newByte = 0;
      newByte |= hexCharToByte(chars[i]);
      newByte <<= 4;
      newByte |= hexCharToByte(chars[i + 1]);
      bytes[byteCount] = (byte) newByte;
      byteCount++;
    }
    return bytes;
  }
  private static final byte hexCharToByte(char ch) {
    switch (ch) {
      case 48: // '0'
        return 0;
      case 49: // '1'
        return 1;
      case 50: // '2'
        return 2;
      case 51: // '3'
        return 3;
      case 52: // '4'
        return 4;
      case 53: // '5'
        return 5;
      case 54: // '6'
        return 6;
      case 55: // '7'
        return 7;
      case 56: // '8'
        return 8;
      case 57: // '9'
        return 9;
      case 97: // 'a'
        return 10;
      case 98: // 'b'
        return 11;
      case 99: // 'c'
        return 12;
      case 100: // 'd'
        return 13;
      case 101: // 'e'
        return 14;
      case 102: // 'f'
        return 15;
      case 58: // ':'
      case 59: // ';'
      case 60: // '<'
      case 61: // '='
      case 62: // '>'
      case 63: // '?'
      case 64: // '@'
      case 65: // 'A'
      case 66: // 'B'
      case 67: // 'C'
      case 68: // 'D'
      case 69: // 'E'
      case 70: // 'F'
      case 71: // 'G'
      case 72: // 'H'
      case 73: // 'I'
      case 74: // 'J'
      case 75: // 'K'
      case 76: // 'L'
      case 77: // 'M'
      case 78: // 'N'
      case 79: // 'O'
      case 80: // 'P'
      case 81: // 'Q'
      case 82: // 'R'
      case 83: // 'S'
      case 84: // 'T'
      case 85: // 'U'
      case 86: // 'V'
      case 87: // 'W'
      case 88: // 'X'
      case 89: // 'Y'
      case 90: // 'Z'
      case 91: // '['
      case 92: // '\\'
      case 93: // ']'
      case 94: // '^'
      case 95: // '_'
      case 96: // '`'
      default:
        return 0;
    }
  }
  public static String getFILENAME() {
    return FILENAME;
  }
  public int getIsEncrypt() {
    return isEncrypt;
  }
  public void setIsEncrypt(int isEncrypt) {
    this.isEncrypt = isEncrypt;
  }
  public String getKeyStr() {
    return keyStr;
  }
  public void setKeyStr(String keyStr) {
    this.keyStr = keyStr;
  }
  public String getMessage() {
    return message;
  }
  public void setMessage(String message) {
    this.message = message;
  }
  public static void main(String[] args) {
    String key = "yycg12345678901234567890";
    String oldstring = "test" + "#" + "test" + "#" + System.currentTimeMillis();
    V3DESUtil tempDesEn = new V3DESUtil(1, oldstring, key);
    String strTemp = tempDesEn.V3DESChiper("12345678");
    System.out.println("strTemp=== " + strTemp);
    V3DESUtil tempDe = new V3DESUtil(0, strTemp, key);
    String strTempDe = tempDe.V3DESChiper("12345678");
    System.out.println("strTempDe===" + strTempDe);
  }
}

希望本文所述對大家java程序設計有所幫助。

原文鏈接:http://blog.csdn.net/lovoo/article/details/77937656

延伸 · 閱讀

精彩推薦
主站蜘蛛池模板: 国产日韩一级片 | 亚洲三级在线观看 | 日韩av在线中文字幕 | 欧美日韩久久久 | av免费网站在线观看 | 天天澡天天狠天天天做 | 国产精品亚洲第一区在线暖暖韩国 | 青青草久 | 国产精品成人一区二区 | 国产精品一区二区三 | 成年人免费看 | 久久久久久久久久久免费av | 久久免费视频3 | 亚洲视频在线播放免费 | 成年人黄色免费网站 | 日本黄色免费大片 | 亚洲第一色| 久久久一二三 | 欧美日韩高清在线观看 | 日本久久成人 | 青青操天天干 | 不卡免费视频 | 毛片高清| 亚洲欧美日韩另类精品一区二区三区 | 日韩视频精品在线 | 久久久久久一区 | 久久综合av| 日本精品在线观看视频 | 久久天堂视频 | 国产精品美女视频 | 成人羞羞视频在线观看免费 | 午夜影晥| 久久美女 | 亚洲精品h | 成人精品福利 | 欧美日韩亚洲高清 | 亚洲欧美激情精品一区二区 | 91观看在线视频 | 欧美一级久久 | 中文字幕 亚洲一区 | 精品日韩 |