AES 암호화 / 복호화 관련해서 질문드립니다.

throat의 이미지

안녕하세요?

PHP에서 암호화 -> 자바에서 복호화를 만들고 있습니다.

일단 PHP 소스는 아래와 같습니다.
========================= PHP 소스 ===========================
<?PHP
// 테스트 부분입니다.
$a= getEncrypt("1"); // 문자 "1" 을 암호화.
echo getDecrypt($a); // 결과가 정상적으로 "1" 이 나옵니다.

// 암호화를 하기위해 필요한 key입니다. 자바에서 복호화하기 위해 같은 key를 사용합니다.
define('CIPHER_KEY', '1111111111111111'); // 16 bytes

// CBC를 위한 initial vector 값.
define('IV', '2222222222222222'); // 16 bytes

// 암호화 함수
function getEncrypt($sStr)
{
// 암호화 변수 초기화
$nIvSize = @mcrypt_get_iv_size(MCRYPT_RIJNDAEL_128, MCRYPT_MODE_CBC);

// 암호화
$sCipher = @mcrypt_encrypt(MCRYPT_RIJNDAEL_128, CIPHER_KEY, $sStr, MCRYPT_MODE_CBC, IV);

return bin2hex($sCipher); // 문자열 형태로 저장하기 위해 16진수 형태로 변환. 이 값을 쿠키에 저장합니다.
}

// 복호화 함수
function getDecrypt($sStr)
{
// 암호화 변수 초기화
$nIvSize = mcrypt_get_iv_size(MCRYPT_RIJNDAEL_128, MCRYPT_MODE_CBC);

// 복호화
$sDecipher = @mcrypt_decrypt(MCRYPT_RIJNDAEL_128, CIPHER_KEY, pack('H*', $sStr), MCRYPT_MODE_CBC, IV);

return $sDecipher;
}
?>
--------------------------------------------------------------------------
php에서 문자 "1"을 암호화 했을 때 저장된 쿠키값은 52be0e9f3b993798b3aaafe4ad2adb7c 이구요.
이 값을 이용해서 자바에서 복호화를 하고싶은겁니다.

====================================== 자바 소스 =================================
import java.math.BigInteger;

import javax.crypto.Cipher;
import javax.crypto.spec.IvParameterSpec;
import javax.crypto.spec.SecretKeySpec;

public class AesTest {
public static void main(String[] args) throws Exception{
// 암호화된 쿠키값.
String cookie = "52be0e9f3b993798b3aaafe4ad2adb7c";
String keyString = "1111111111111111";
String initialVectorParam = "2222222222222222";

SecretKeySpec key = new SecretKeySpec(keyString.getBytes(), "AES"); // KeySpec 생성.
IvParameterSpec initalVector = new IvParameterSpec(initialVectorParam.getBytes()); // IV 생성

Cipher cipher = Cipher.getInstance("AES/CBC/NoPadding");
cipher.init(Cipher.DECRYPT_MODE, key, initalVector);
byte[] encrypted = new BigInteger(cookie,16).toByteArray(); // hex값을 byte로 다시 복원.
byte[] decryptedValue = cipher.doFinal(encrypted);

System.out.println(new String(decryptedValue)); // 결과 출력. "1" 이 출력되어야 정상.
}

}
--------------------------------------------------------------------------
PHP에서 암호화한 바이너리->hex 한 결과값을 자바에서 다시 바이너리로 복원하고 복호화를 시도했습니다.
결과를 출력해보면 기대했던 "1" 이 아니라 "g?v쵟?Y?잞J?" <-- 요따구가 찍혀요 ㅠㅠ
제 멍청한 머리로는 도저히 어느부분이 잘못되었는지 모르겠습니다.

지나가던 고수님의 한마디가 초보한테는 큰 힘이 됩니다. 한번만 관심가지구 봐주세요. 3일째 이러고있네요...

감사합니다.

IsExist의 이미지

링크를 달았는데 질문하신 분이 다른곳에서 해답을 찾은거 같아 삭제했습니다.

그러저나 php에서는 왜 패딩 옵션이 없나 모르겠네요.
---------
간디가 말한 우리를 파괴시키는 7가지 요소

첫째, 노동 없는 부(富)/둘째, 양심 없는 쾌락
셋째, 인격 없는 지! 식/넷째, 윤리 없는 비지니스

이익추구를 위해서라면..

다섯째, 인성(人性)없는 과학
여섯째, 희생 없는 종교/일곱째, 신념 없는 정치

---------
간디가 말한 우리를 파괴시키는 7가지 요소

첫째, 노동 없는 부(富)/둘째, 양심 없는 쾌락
셋째, 인격 없는 지! 식/넷째, 윤리 없는 비지니스

이익추구를 위해서라면..

다섯째, 인성(人性)없는 과학
여섯째, 희생 없는 종교/일곱째, 신념 없는 정치

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.