Maison  >  Article  >  Java  >  Comment mettre en œuvre le cryptage AES ?

Comment mettre en œuvre le cryptage AES ?

PHP中文网
PHP中文网original
2017-06-20 14:48:081492parcourir

package util;

importer java.io.UnsupportedEncodingException;
importer java.security.InvalidKeyException;
importer java.security.NoSuchAlgorithmException;
importer java.security.SecureRandom;
importer javax.crypto.BadPaddingException;
importer javax.crypto.Cipher;
importer javax.crypto.IllegalBlockSizeException;
importer javax.crypto.KeyGenerator;
importer javax.crypto.NoSuchPaddingException;
importer javax.crypto.SecretKey;
importer javax.crypto.spec.SecretKeySpec;
importer org.apache.tomcat.util.codec.binary.Base64;

/**
*
* @auteur Administrateur
*
*/
public class AES {

// 加密
  public static String Encrypt(String sSrc, String sKey) lève une exception {
       if (sKey == null) {
System.out.print("Key为空null");
           return null;
       }
         // 判断Key是否为16位
       if (sKey.length() != 16) {
           System.out.print("Key长度不是16位");
           return null;
       >
       byte[] raw = sKey.getBytes("utf-8");
SecretKeySpec skeySpec = new SecretKeySpec(raw, "AES");
       Cipher cipher = Cipher.getInstance("AES/ECB/PKCS5Padding");//"算法/模式/补码方式"
       cipher.init( Cipher.ENCRYPT_MODE, skeySpec);
       byte[] chiffré = cipher.doFinal(sSrc.getBytes("utf-8"));

return new Base64().encodeToString(encrypted);//此处使用BASE64做转码功能,同时能起到2次加密的作用。
   }

// Déchiffrer > Le décryptage de chaîne statique publique (String SSRC, String Skey) lève une exception {
Essayez {
// Juger si la clé est correcte
if (SKEY == NULL) { System.out.print("Key is null");
return null;
}
// Déterminer si la clé est de 16 bits
if (sKey.length () != 16) {
          System.out.print("La longueur de la clé n'est pas de 16 bits");
SecretKeySpec skeySpec = new SecretKeySpec(raw, "AES");
Cipher cipher = Cipher. getInstance("AES/ECB/PKCS5Padding");
cipher.init(Cipher.DECRYPT_MODE, skeySpec );
byte[] chiffré1 = new Base64().decode(sSrc);//Déchiffrer d'abord avec base64
                                                                                                                                       en utilisant  base64         en utilisant           en utilisant ' ' s ' ' en utilisant 's ' ' t ‐ ‐ ‐ d byte[] original = cipher.doFinal(encrypted1);  
                  String(original,"utf-8");
return originalString;
} catch (Exception e) {
System.out.println(e.toString());
return null;
}
      } catch (Exception ex ) {
          System.out.println(ex.toString());
              return null; 🎝> */
public static byte[] encrypt (Contenu de la chaîne, Mot de passe de la chaîne) {
                                                          kgen. init(128, new SecureRandom (password.getBytes())); ​​​SecretKeySpec key = new SecretKeySpec(enCodeFormat, "AES") ;
Cipher cipher = Cipher.getInstance("AES");
byte[] byteContent = content.getBytes("utf-8");
cipher.init(Cipher.ENCRYPT_MODE , key);// Initialisation
              byte[] result = cipher.doFinal(byteContent) ; {
e.printStackTrace();
        } catch (NoSuchPaddingException e) {                             e.printStackTrace(); e.printStackTrace();
} catch (UnsupportedEncodingException e) {
                      e.printStackTrace(                                                                                                                                                                              e.printStackTrace();                   e.printStackTrace();  
           } catch (BadPaddingException e) {  
                  e.printStackTrace();  
           }  
           return null ;  
   }  
   /**Décryptage
* @param content Contenu à décrypter
* @param password Clé de décryptage
* @return
*/  
   public static byte[] déchiffrer (octet[] contenu, mot de passe chaîne) {  
           essayer {  
                    KeyGenerator kgen = ator.getInstance(" AES");  
                    kgen.init(128, new SecureRandom(password.getBytes()));  
                    SecretKey secretKey = kgen.generateKey();  
                    byte[] enCodeFormat = secretKey.getEncoded();  
                    Clé SecretKeySpec = new SecretKeySpec(enCodeFormat, "AES");              
                    Cipher cipher = Cipher.getInstance("AES");// 
                   byte[] result = cipher.doFinal(content );  
                   retourner le résultat ; // 加密  
           } catch (NoSuchAlgorithmException e) {  
                   e.printStackTrace();  
           } catch (NoSuchPaddingException e) {  
                  e.printStackTrace();  
           } catch (InvalidKeyException e) {  
                  e.printStackTrace();  
           } catch (IllegalBlockSizeException e) {  
                   e.printStackTrace();  
           } catch (BadPaddingException e) {  
                  e.printStackTrace();  
           }  
           return null ;  
   }  
   /**Convertir binaire en hexadécimal
* @param buf
* @return
*/  
   public static String parseByte2HexStr(byte buf[]) {  
           StringBuffer sb = new StringBuffer();  <  
                   if (hex.length() == 1) {  
                           hex = '0' + hex;  
                   }  
                  sb.append(hex.toUpperCase());  
           }  
           return sb.toString();  
   }  
   /**Convertir l'hexadécimal en binaire
* @param hexStr
* @return
*/  
  public static byte[] parseHexStr2Byte(String hexStr) {  
                 renvoie null ;  
           byte[] result = new byte[hexStr.length()/2];  
           for (int i = 0;i< hexStr.length()/2; i++) {  
int high = Integer.parseInt(hexStr.substring(i*2, i*2+1), 16); 🎜> public static void main(String [] args) lance une exception {
/*
* Le mode de cryptage AES-128-ECB est utilisé ici et la clé doit être de 16 bits.
*/
String cKey = "1234567890123456";
// Chaîne qui doit être chiffrée
String cSrc = "www.gowhere.so";
System.out println(cSrc. ) ;
                                                                                                                                  String enString = AES.Encrypt(cSrc, cKey); // Decrypt
String DeString = AES.Decrypt(enString, cKey);
System.out.println("La chaîne déchiffrée est : " + DeString);
String content = "test";
String password = "12345678";
//Cryptage
System.out.println("Avant le chiffrement : " + content);
byte[] encryptResult = encrypt(content, password);
String encryptResultStr = parseByte2HexStr(encryptResult);
System.out.println("Après le cryptage : " + encryptResultStr

//Déchiffrement

decryptFrom = par seHexStr2Byte(encryptResultStr);
byte[] decryptResult = decrypt(decryptFrom,password);
System.out.println("Après le décryptage : " + new String(decryptResult)); >
}

Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn