php 와 자바 의 일반적인 암호 화 복호화 알고리즘

3770 단어 PHP
AES 는 고급 암호 화 표준 (Advanced Encryption Standard) 을 말 하 는데 현재 가장 유행 하 는 암호 화 알고리즘 으로 웹 응용 개발, 특히 대외 적 으로 인 터 페 이 스 를 제공 할 때 자주 사용 되 고 있 습 니 다. 다음은 제 가 정리 한 phop 과 자바 에서 통용 되 는 AES 암호 화 복호화 알고리즘 입 니 다.php 버 전 코드 는 다음 과 같 습 니 다:
';
//echo Security::decrypt($value, $key);

자바 버 전 코드 는 다음 과 같 습 니 다:
import javax.crypto.Cipher;  
import javax.crypto.spec.SecretKeySpec;  
   
import org.apache.commons.codec.binary.Base64;  
   
public class Security {  
    public static String encrypt(String input, String key){  
        byte[] crypted = null;  
        try{  
            SecretKeySpec skey = new SecretKeySpec(key.getBytes(), "AES");  
            Cipher cipher = Cipher.getInstance("AES/ECB/PKCS5Padding");  
            cipher.init(Cipher.ENCRYPT_MODE, skey);  
            crypted = cipher.doFinal(input.getBytes());  
        }catch(Exception e){  
        System.out.println(e.toString());  
    }  
    return new String(Base64.encodeBase64(crypted));  
}  
   
    public static String decrypt(String input, String key){  
        byte[] output = null;  
        try{  
            SecretKeySpec skey = new SecretKeySpec(key.getBytes(), "AES");  
            Cipher cipher = Cipher.getInstance("AES/ECB/PKCS5Padding");  
            cipher.init(Cipher.DECRYPT_MODE, skey);  
            output = cipher.doFinal(Base64.decodeBase64(input));  
            }catch(Exception e){  
            System.out.println(e.toString());  
        }  
        return new String(output);  
    }  
   
    public static void main(String[] args) {  
        String key = "1234567891234567";  
        String data = "example";  
          
        System.out.println(Security.encrypt(data, key));  
          
        System.out.println(Security.decrypt(Security.encrypt(data, key), key));  
          
              
    }     
}



:http://www.phperz.com/article/15/1006/125288.html

좋은 웹페이지 즐겨찾기