'분류 전체보기'에 해당되는 글 951건
- 2008.09.18 블로그에 MSN 메신저 달기
- 2008.09.17 flash 실행 null 에러
- 2008.09.11 HTML Editor Reviews
- 2008.09.11 플렉스 책
- 2008.09.10 ie6과 ie7 같이 사용하기 multi ie
- 2008.09.10 ie6과 ie7 같이 사용하기 multi ie
- 2008.09.07 적벽강
- 2008.09.07 진주
- 2008.09.05 맛있는 요리 레시피
- 2008.09.01 Encryption, Decryption
http://webdesign.about.com/gi/dynamic/offsite.htm?zi=1/XJ&sdn=webdesign&cdn=compute&tm=23&f=00&su=p284.9.336.ip_p504.1.336.ip_&tt=2&bt=1&bts=0&zu=http://www.webcommando.com/editrev/byname.html
HTML Editor Reviews
HTML Editor Reviews
HTML Editor Reviews
HTML Editor Reviews
HTML Editor Reviews
HTML Editor Reviews
HTML Editor Reviews
HTML Editor Reviews
Adobe FLEX 3 실전 트레이닝 북
http://www.yes24.com/Goods/FTGoodsView.aspx?goodsNo=3023912&CategoryNumber=001001003016001012001
하루에 한번 가슴 뛰는 일을 하자
http://www.yes24.com/Goods/FTGoodsView.aspx?goodsNo=3023912&CategoryNumber=001001003016001012001
하루에 한번 가슴 뛰는 일을 하자
현재 XP SP2 에 IE7 을 사용하고 있는데 업무상 IE6 환경에서 테스트 할 일이 있어
멀티로 사용을 할 수는 없을까? 해서 찾아 보니 이런 좋은 프로그램이 있네요....
웹표준으로 웹페이지 생성하고 한 PC에서 크로스브라우징 테스트할 때 유용하게 사용할 수 있겠네요...
출처 : http://tredosoft.com/Multiple_IE
현재 XP SP2 에 IE7 을 사용하고 있는데 업무상 IE6 환경에서 테스트 할 일이 있어
멀티로 사용을 할 수는 없을까? 해서 찾아 보니 이런 좋은 프로그램이 있네요....
웹표준으로 웹페이지 생성하고 한 PC에서 크로스브라우징 테스트할 때 유용하게 사용할 수 있겠네요...
출처 : http://tredosoft.com/Multiple_IE
Encryption, Decryption
/**
* Encrypt local and inherited fields with the password.
*/
public void encrypt(String password) throws Exception {
if (password == null || password.length() == 0)
return;
// generate the key with password
KeyGenerator generator = KeyGenerator.getInstance("DES");
generator.init(new SecureRandom(password.getBytes()));
Key key = generator.generateKey();
Cipher cipher = Cipher.getInstance("DES/ECB/PKCS5Padding");
cipher.init(Cipher.ENCRYPT_MODE, key);
// do encryption
// this is for padding
BASE64Encoder encoder = new BASE64Encoder();
program = encoder.encode(cipher.doFinal(program.getBytes()));
}
/**
* Decrypt the local and inherited feilds with the password.
*/
public void decrypt(String password) throws Exception {
if (password == null || password.length() == 0)
return;
// generate the key with password
KeyGenerator generator = KeyGenerator.getInstance("DES");
generator.init(new SecureRandom(password.getBytes()));
Key key = generator.generateKey();
Cipher cipher = Cipher.getInstance("DES/ECB/PKCS5Padding");
cipher.init(Cipher.DECRYPT_MODE, key);
// do encryption
// this is for padding
BASE64Decoder decoder = newBASE64Decoder();
program = new String(cipher.doFinal(decoder.decodeBuffer(program)));
}