第五十篇: JAVA加密解密之数字证书

系统之间在进行交互的时候,我们经常会用到数字证书,数字证书可以帮我们验证身份等,下面我们就来看一下在Java中如何使用数字证书。 
我们先使用keytool工具生成密钥库并导出公钥证书。 
第一步:生成keyStroe文件 
执行如下命令:

keytool -genkey -validity 36000 -alias www.jianggujin.com -keyalg RSA -keystore test.keystore

该命令相关参数如下: 
这里写图片描述

输入完后,我们需要按照提示完成后续信息的输入,这里面我们使用的密码为:123456

第二步:导出公钥证书 
生成完密钥库后,我们就可以导出公钥文件了,执行如下命令:

keytool -export -keystore test.keystore -alias www.jianggujin.com -file test.cer -rfc

该命令相关参数如下: 
这里写图片描述

完整操作过程如下: 
这里写图片描述

经过这两步后,我们就有了密钥库和证书文件,和之前的加密解密工具类一样,我们再来编写一个用于操作数字证书的工具类:

package com.jianggujin.codec;

import java.io.FileInputStream;
import java.io.InputStream;
import java.security.KeyStore;
import java.security.PrivateKey;
import java.security.PublicKey;
import java.security.Signature;
import java.security.cert.Certificate;
import java.security.cert.CertificateFactory;
import java.security.cert.X509Certificate;
import java.util.Date;

import javax.crypto.Cipher;

/**
 * 数字证书
 * 
 * @author jianggujin
 *
 */
public class HQCertificate
{
   private static HQCertificate certificate = new HQCertificate();

   public static HQCertificate getInstance()
   {
      return certificate;
   }

   private HQCertificate()
   {
   }

   /**
    * 密钥库
    * 
    * @author jianggujin
    *
    */
   public static enum HQKeyStore
   {

      JCEKS("jceks"), JKS("jks"), DKS("dks"), PKCS11("pkcs11"), PKCS12("pkcs12");
      private String name;

      private HQKeyStore(String name)
      {
         this.name = name;
      }

      public String getName()
      {
         return this.name;
      }
   }

   /**
    * Java密钥库(Java Key Store,JKS)KEY_STORE
    */
   // public final String KEY_STORE = "JKS";

   public final String X509 = "X.509";

   /**
    * 由KeyStore获得私钥
    * 
    * @param keyStorePath
    * @param alias
    * @param password
    * @return
    * @throws Exception
    */
   private PrivateKey getPrivateKey(String keyStorePath, String alias, char[] password, HQKeyStore keyStore)
         throws Exception
   {
      KeyStore ks = getKeyStore(keyStorePath, password, keyStore);
      PrivateKey key = (PrivateKey) ks.getKey(alias, password);
      return key;
   }

   /**
    * 由Certificate获得公钥
    * 
    * @param certificatePath
    * @return
    * @throws Exception
    */
   private PublicKey getPublicKey(String certificatePath) throws Exception
   {
      Certificate certificate = getCertificate(certificatePath);
      PublicKey key = certificate.getPublicKey();
      return key;
   }

   /**
    * 获得Certificate
    * 
    * @param certificatePath
    * @return
    * @throws Exception
    */
   private Certificate getCertificate(String certificatePath) throws Exception
   {
      CertificateFactory certificateFactory = CertificateFactory.getInstance(X509);
      FileInputStream in = new FileInputStream(certificatePath);
      Certificate certificate = certificateFactory.generateCertificate(in);
      in.close();
      return certificate;
   }

   /**
    * 获得Certificate
    * 
    * @param keyStorePath
    * @param alias
    * @param password
    * @return
    * @throws Exception
    */
   private Certificate getCertificate(String keyStorePath, String alias, char[] password, HQKeyStore keyStore)
         throws Exception
   {
      KeyStore ks = getKeyStore(keyStorePath, password, keyStore);
      return getCertificate(ks, alias);
   }

   private Certificate getCertificate(KeyStore keyStore, String alias) throws Exception
   {
      Certificate certificate = keyStore.getCertificate(alias);
      return certificate;
   }

   /**
    * 获得KeyStore
    * 
    * @param keyStorePath
    * @param password
    * @return
    * @throws Exception
    */
   public KeyStore getKeyStore(String keyStorePath, char[] password, HQKeyStore keyStore) throws Exception
   {
      KeyStore store = null;
      FileInputStream is = new FileInputStream(keyStorePath);
      store = getKeyStore(is, password, keyStore);
      is.close();
      return store;
   }

   public KeyStore getKeyStore(InputStream in, char[] password, HQKeyStore keyStore) throws Exception
   {
      KeyStore ks = KeyStore.getInstance(keyStore.getName());
      ks.load(in, password);
      return ks;
   }

   /**
    * 私钥加密
    * 
    * @param data
    * @param keyStorePath
    * @param alias
    * @param password
    * @return
    * @throws Exception
    */
   public byte[] encrypt(byte[] data, String keyStorePath, String alias, char[] password, HQKeyStore keyStore)
         throws Exception
   {
      // 取得私钥
      PrivateKey privateKey = getPrivateKey(keyStorePath, alias, password, keyStore);

      return encrypt(data, privateKey);

   }

   public byte[] encrypt(byte[] data, PrivateKey privateKey) throws Exception
   {
      // 对数据加密
      Cipher cipher = Cipher.getInstance(privateKey.getAlgorithm());
      cipher.init(Cipher.ENCRYPT_MODE, privateKey);
      return cipher.doFinal(data);
   }

   /**
    * 公钥加密
    * 
    * @param data
    * @param certificatePath
    * @return
    * @throws Exception
    */
   public byte[] encrypt(byte[] data, String certificatePath) throws Exception
   {
      // 取得公钥
      PublicKey publicKey = getPublicKey(certificatePath);
      return encrypt(data, publicKey);

   }

   public byte[] encrypt(byte[] data, PublicKey publicKey) throws Exception
   {
      // 对数据加密
      Cipher cipher = Cipher.getInstance(publicKey.getAlgorithm());
      cipher.init(Cipher.ENCRYPT_MODE, publicKey);
      return cipher.doFinal(data);

   }

   /**
    * 私钥解密
    * 
    * @param data
    * @param keyStorePath
    * @param alias
    * @param password
    * @return
    * @throws Exception
    */
   public byte[] decrypt(byte[] data, String keyStorePath, String alias, char[] password, HQKeyStore keyStore)
         throws Exception
   {
      // 取得私钥
      PrivateKey privateKey = getPrivateKey(keyStorePath, alias, password, keyStore);
      return decrypt(data, privateKey);
   }

   public byte[] decrypt(byte[] data, PrivateKey privateKey) throws Exception
   {
      // 对数据加密
      Cipher cipher = Cipher.getInstance(privateKey.getAlgorithm());
      cipher.init(Cipher.DECRYPT_MODE, privateKey);
      return cipher.doFinal(data);
   }

   /**
    * 公钥解密
    * 
    * @param data
    * @param certificatePath
    * @return
    * @throws Exception
    */
   public byte[] decrypt(byte[] data, String certificatePath) throws Exception
   {
      // 取得公钥
      PublicKey publicKey = getPublicKey(certificatePath);
      // 对数据加密
      Cipher cipher = Cipher.getInstance(publicKey.getAlgorithm());
      cipher.init(Cipher.DECRYPT_MODE, publicKey);
      return decrypt(data, publicKey);
   }

   public byte[] decrypt(byte[] data, PublicKey publicKey) throws Exception
   {
      // 对数据加密
      Cipher cipher = Cipher.getInstance(publicKey.getAlgorithm());
      cipher.init(Cipher.DECRYPT_MODE, publicKey);
      return cipher.doFinal(data);

   }

   /**
    * 验证Certificate
    * 
    * @param certificatePath
    * @return
    */
   public boolean verifyCertificate(String certificatePath)
   {
      return verifyCertificate(new Date(), certificatePath);
   }

   /**
    * 验证Certificate是否过期或无效
    * 
    * @param date
    * @param certificatePath
    * @return
    */
   public boolean verifyCertificate(Date date, String certificatePath)
   {
      boolean status = true;
      try
      {
         // 取得证书
         Certificate certificate = getCertificate(certificatePath);
         // 验证证书是否过期或无效
         status = verifyCertificate(date, certificate);
      }
      catch (Exception e)
      {
         status = false;
      }
      return status;
   }

   /**
    * 验证证书是否过期或无效
    * 
    * @param date
    * @param certificate
    * @return
    */
   private boolean verifyCertificate(Date date, Certificate certificate)
   {
      boolean status = true;
      try
      {
         X509Certificate x509Certificate = (X509Certificate) certificate;
         x509Certificate.checkValidity(date);
      }
      catch (Exception e)
      {
         status = false;
      }
      return status;
   }

   /**
    * 签名
    * 
    * @param keyStorePath
    * @param alias
    * @param password
    * 
    * @return
    * @throws Exception
    */
   public byte[] sign(byte[] data, String keyStorePath, String alias, char[] password, HQKeyStore keyStore)
         throws Exception
   {
      // 获得证书
      Certificate certificate = getCertificate(keyStorePath, alias, password, keyStore);
      // 取得私钥
      PrivateKey privateKey = getPrivateKey(keyStorePath, alias, password, keyStore);
      return sign(data, certificate, privateKey);
   }

   public byte[] sign(byte[] data, Certificate certificate, PrivateKey privateKey) throws Exception
   {
      // 获得证书
      X509Certificate x509Certificate = (X509Certificate) certificate;

      // 构建签名
      Signature signature = Signature.getInstance(x509Certificate.getSigAlgName());
      signature.initSign(privateKey);
      signature.update(data);
      return signature.sign();
   }

   /**
    * 验证签名
    * 
    * @param data
    * @param sign
    * @param certificatePath
    * @return
    * @throws Exception
    */
   public boolean verify(byte[] data, byte[] sign, String certificatePath) throws Exception
   {
      // 获得证书
      Certificate certificate = getCertificate(certificatePath);

      return verify(data, sign, certificate);
   }

   public boolean verify(byte[] data, byte[] sign, Certificate certificate) throws Exception
   {
      // 获得证书
      X509Certificate x509Certificate = (X509Certificate) certificate;
      // 获得公钥
      PublicKey publicKey = x509Certificate.getPublicKey();
      // 构建签名
      Signature signature = Signature.getInstance(x509Certificate.getSigAlgName());
      signature.initVerify(publicKey);
      signature.update(data);

      return signature.verify(sign);
   }

   /**
    * 验证Certificate
    * 
    * @param keyStorePath
    * @param alias
    * @param password
    * @return
    */
   public boolean verifyCertificate(Date date, String keyStorePath, String alias, char[] password, HQKeyStore keyStore)
   {
      boolean status = true;
      try
      {
         Certificate certificate = getCertificate(keyStorePath, alias, password, keyStore);
         status = verifyCertificate(date, certificate);
      }
      catch (Exception e)
      {
         status = false;
      }
      return status;
   }

   /**
    * 验证Certificate
    * 
    * @param keyStorePath
    * @param alias
    * @param password
    * @return
    */
   public boolean verifyCertificate(String keyStorePath, String alias, char[] password, HQKeyStore keyStore)
   {
      return verifyCertificate(new Date(), keyStorePath, alias, password, keyStore);
   }
}
 
 
  • 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
  • 211
  • 212
  • 213
  • 214
  • 215
  • 216
  • 217
  • 218
  • 219
  • 220
  • 221
  • 222
  • 223
  • 224
  • 225
  • 226
  • 227
  • 228
  • 229
  • 230
  • 231
  • 232
  • 233
  • 234
  • 235
  • 236
  • 237
  • 238
  • 239
  • 240
  • 241
  • 242
  • 243
  • 244
  • 245
  • 246
  • 247
  • 248
  • 249
  • 250
  • 251
  • 252
  • 253
  • 254
  • 255
  • 256
  • 257
  • 258
  • 259
  • 260
  • 261
  • 262
  • 263
  • 264
  • 265
  • 266
  • 267
  • 268
  • 269
  • 270
  • 271
  • 272
  • 273
  • 274
  • 275
  • 276
  • 277
  • 278
  • 279
  • 280
  • 281
  • 282
  • 283
  • 284
  • 285
  • 286
  • 287
  • 288
  • 289
  • 290
  • 291
  • 292
  • 293
  • 294
  • 295
  • 296
  • 297
  • 298
  • 299
  • 300
  • 301
  • 302
  • 303
  • 304
  • 305
  • 306
  • 307
  • 308
  • 309
  • 310
  • 311
  • 312
  • 313
  • 314
  • 315
  • 316
  • 317
  • 318
  • 319
  • 320
  • 321
  • 322
  • 323
  • 324
  • 325
  • 326
  • 327
  • 328
  • 329
  • 330
  • 331
  • 332
  • 333
  • 334
  • 335
  • 336
  • 337
  • 338
  • 339
  • 340
  • 341
  • 342
  • 343
  • 344
  • 345
  • 346
  • 347
  • 348
  • 349
  • 350
  • 351
  • 352
  • 353
  • 354
  • 355
  • 356
  • 357
  • 358
  • 359
  • 360
  • 361
  • 362
  • 363
  • 364
  • 365
  • 366
  • 367
  • 368
  • 369
  • 370
  • 371
  • 372
  • 373
  • 374
  • 375
  • 376
  • 377
  • 378
  • 379
  • 380
  • 381
  • 382
  • 383
  • 384
  • 385
  • 386
  • 387
  • 388
  • 389
  • 390
  • 391
  • 392
  • 393
  • 394
  • 395
  • 396
  • 397
  • 398
  • 399
  • 400
  • 401
  • 402
  • 403
  • 404
  • 405
  • 406
  • 407
  • 408
  • 409
  • 410
  • 411
  • 412
  • 413
  • 414
  • 415
  • 416
  • 417
  • 418
  • 419
  • 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
  • 211
  • 212
  • 213
  • 214
  • 215
  • 216
  • 217
  • 218
  • 219
  • 220
  • 221
  • 222
  • 223
  • 224
  • 225
  • 226
  • 227
  • 228
  • 229
  • 230
  • 231
  • 232
  • 233
  • 234
  • 235
  • 236
  • 237
  • 238
  • 239
  • 240
  • 241
  • 242
  • 243
  • 244
  • 245
  • 246
  • 247
  • 248
  • 249
  • 250
  • 251
  • 252
  • 253
  • 254
  • 255
  • 256
  • 257
  • 258
  • 259
  • 260
  • 261
  • 262
  • 263
  • 264
  • 265
  • 266
  • 267
  • 268
  • 269
  • 270
  • 271
  • 272
  • 273
  • 274
  • 275
  • 276
  • 277
  • 278
  • 279
  • 280
  • 281
  • 282
  • 283
  • 284
  • 285
  • 286
  • 287
  • 288
  • 289
  • 290
  • 291
  • 292
  • 293
  • 294
  • 295
  • 296
  • 297
  • 298
  • 299
  • 300
  • 301
  • 302
  • 303
  • 304
  • 305
  • 306
  • 307
  • 308
  • 309
  • 310
  • 311
  • 312
  • 313
  • 314
  • 315
  • 316
  • 317
  • 318
  • 319
  • 320
  • 321
  • 322
  • 323
  • 324
  • 325
  • 326
  • 327
  • 328
  • 329
  • 330
  • 331
  • 332
  • 333
  • 334
  • 335
  • 336
  • 337
  • 338
  • 339
  • 340
  • 341
  • 342
  • 343
  • 344
  • 345
  • 346
  • 347
  • 348
  • 349
  • 350
  • 351
  • 352
  • 353
  • 354
  • 355
  • 356
  • 357
  • 358
  • 359
  • 360
  • 361
  • 362
  • 363
  • 364
  • 365
  • 366
  • 367
  • 368
  • 369
  • 370
  • 371
  • 372
  • 373
  • 374
  • 375
  • 376
  • 377
  • 378
  • 379
  • 380
  • 381
  • 382
  • 383
  • 384
  • 385
  • 386
  • 387
  • 388
  • 389
  • 390
  • 391
  • 392
  • 393
  • 394
  • 395
  • 396
  • 397
  • 398
  • 399
  • 400
  • 401
  • 402
  • 403
  • 404
  • 405
  • 406
  • 407
  • 408
  • 409
  • 410
  • 411
  • 412
  • 413
  • 414
  • 415
  • 416
  • 417
  • 418
  • 419

编写测试工具类,使用我们刚才生成的密钥库和证书文件进行测试:

import org.junit.Test;

import com.jianggujin.codec.HQBase64;
import com.jianggujin.codec.HQCertificate;
import com.jianggujin.codec.HQCertificate.HQKeyStore;

public class CertificateTest
{
   HQCertificate certificate = HQCertificate.getInstance();
   HQBase64 base64 = HQBase64.getInstance();

   private char[] password = "123456".toCharArray();
   private String alias = "www.jianggujin.com";
   private String certificatePath = "test.cer";
   private String keyStorePath = "test.keystore";

   @Test
   public void encode() throws Exception
   {
      byte[] data = "jianggujin".getBytes();
      HQKeyStore keyStore = HQKeyStore.JKS;
      byte[] signResult = certificate.sign(data, keyStorePath, alias, password, keyStore);
      System.err.println("验证证书:" + certificate.verifyCertificate(certificatePath));
      System.err.println("签名:" + base64.encodeToString(signResult));
      System.err.println("验签:" + certificate.verify(data, signResult, certificatePath));
      byte[] result = certificate.encrypt(data, keyStorePath, alias, password, HQKeyStore.JKS);
      System.err.println("加密:" + base64.encodeToString(signResult));
      System.err.println("解密:" + new String(certificate.decrypt(result, certificatePath)));
   }
}
 
 
  • 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
  • 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

执行结果: 
验证证书:true 
签名:dCzoEcjXQgBrTsYxZ6I94zuwgg/GkCmT0q8HjYan4p7hOlfCoFqxXd1/alFjyqfiJmr20ET6aBw/cxECmcJ4m7JqssQ3Pw/aNyVNDTQznFLILxiX9ytSrOAGF7Z55OvpZ6rhm/YS7bAH17PegWrbtiuReBIv/Kbsw2Z4nDbJ2UhIwoUHYy0j+8RES4eQ7LwQtE6EabUmSuyJOzivbkg8onvpcQqCg3Wtd7jqS7pBiYggeR5jHWcCTSMpBtDr/X1/71brFl6zsyBhnAi4EU8lyfqeNtrgbCCaBfDBTf0hVWnv6kRg38fK0OtGFTRCI55Lbz3cEzYpOZi5f1AZpvrMBQ== 
验签:true 
加密:dCzoEcjXQgBrTsYxZ6I94zuwgg/GkCmT0q8HjYan4p7hOlfCoFqxXd1/alFjyqfiJmr20ET6aBw/cxECmcJ4m7JqssQ3Pw/aNyVNDTQznFLILxiX9ytSrOAGF7Z55OvpZ6rhm/YS7bAH17PegWrbtiuReBIv/Kbsw2Z4nDbJ2UhIwoUHYy0j+8RES4eQ7LwQtE6EabUmSuyJOzivbkg8onvpcQqCg3Wtd7jqS7pBiYggeR5jHWcCTSMpBtDr/X1/71brFl6zsyBhnAi4EU8lyfqeNtrgbCCaBfDBTf0hVWnv6kRg38fK0OtGFTRCI55Lbz3cEzYpOZi5f1AZpvrMBQ== 
解密:jianggujin

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值