검색결과 리스트
프로그래밍/보안에 해당되는 글 3건
- 2014.01.02 jvm의 입장?
- 2014.01.01 패킷 암호화 코드 긁어온것 ㅠㅠ
- 2014.01.01 "보안" 관련 문서(2013.12.11 자바 보안객체 사용 추가)
내 app에서 클래스에 static을 사용한다는 의미, 클래스의 인스턴스(물론 refelct 관점에서 보면 클래스도 인스턴스(static
패킷 암호화 코드 긁어온것 ㅠㅠ (0) | 2014.01.01 |
---|---|
"보안" 관련 문서(2013.12.11 자바 보안객체 사용 추가) (0) | 2014.01.01 |
http://blog.naver.com/genesung?Redirect=Log&logNo=130082920571 님감사해요.. (__ )
사실 채팅 프로그램에 대단한 보안이 필요한건 아니고..
대충 보아하니.. des인데.. 그럼 서버측, 클라측 코드에 String Key 하나씩 심어놔야하나?
어디다가 숨겨놔야 안전할까...끙 -_-;;; 그나저나 text.getBytes()하고 있네.. 그나마 반갑다.
내가 암호,복호화할 데이터도.. directByteBuffer님까 -_-;
import javax.crypto.Cipher;
import javax.crypto.spec.SecretKeySpec;
private static final String _cipherAlgorithm = "DES";
String encryptText(String text, String key)
{
String encrypted;
try
{
SecretKeySpec ks = new SecretKeySpec(generateKey(key), _cipherAlgorithm);
Cipher cipher = Cipher.getInstance(_cipherAlgorithm);
cipher.init(Cipher.ENCRYPT_MODE, ks);
byte[] encryptedBytes = cipher.doFinal(text.getBytes());
encrypted = new String(Base64Coder.encode(encryptedBytes));
}
catch (Exception e)
{
e.printStackTrace();
encrypted = text;
}
return encrypted;
}
String decryptText(String text, String key)
{
String decrypted;
try
{
SecretKeySpec ks = new SecretKeySpec(generateKey(key), _cipherAlgorithm);
Cipher cipher = Cipher.getInstance(_cipherAlgorithm);
cipher.init(Cipher.DECRYPT_MODE, ks);
byte[] decryptedBytes = cipher.doFinal(Base64Coder.decode(text));
decrypted = new String(decryptedBytes);
}
catch (Exception e)
{
decrypted = text;
}
return decrypted;
}
byte[] generateKey(String key)
{
byte[] desKey = new byte[8];
byte[] bkey = key.getBytes();
if (bkey.length < desKey.length)
{
System.arraycopy(bkey, 0, desKey, 0, bkey.length);
for (int i = bkey.length; i < desKey.length; i++)
desKey[i] = 0;
}
else
System.arraycopy(bkey, 0, desKey, 0, desKey.length);
return desKey;
}
[출처] 자바에서 비밀번호의 암호화|작성자 몽쉐프
jvm의 입장? (0) | 2014.01.02 |
---|---|
"보안" 관련 문서(2013.12.11 자바 보안객체 사용 추가) (0) | 2014.01.01 |
X509EncodedKeySpec bobPubKeySpec = new X509EncodedKeySpec(bobEncodedPubKey);
KeyFactory keyFactory = KeyFactory.getInstance("DSA");
PublicKey bobPubKey = keyFactory.generatePublic(bobPubKeySpec);
Signature sig = Signature.getInstance("DSA");
sig.initVerify(bobPubKey);
sig.update(data);
sig.verify(signature);
*******************************************************************
(RSA 관련 블로그)
http://blog.naver.com/PostView.nhn?blogId=nttkak&logNo=20130239694</p></div>
(추가)
나는 요때부터 보안에도 관심을 가졌었구나.. 하긴 오래전 게임 회사 일할때.. 해킹및 불법 사용자 문제로 고생을 했었지... 실제 서비스를 제공한다고 했을때, 보안이란 문제의 비중은 결코 가볍지 않다.
jvm의 입장? (0) | 2014.01.02 |
---|---|
패킷 암호화 코드 긁어온것 ㅠㅠ (0) | 2014.01.01 |
RECENT COMMENT