Programing
-
pyDes를 이용한 DES 암호화, 복호화Programing/Python 2014. 7. 25. 14:32
코드#참고 #http://www.cppblog.com/AutomateProgram/archive/2013/01/06/197017.html import pyDes #http://twhiteman.netfirms.com/des.html import base64 class DES: def __init__(self, iv, key): self.iv = iv self.key = key def encrypt(self, data): k = pyDes.des(self.key, pyDes.ECB, self.iv, pad=None, padmode=pyDes.PAD_PKCS5) d = k.encrypt(data) d = base64.encodestring(d) return d def decrypt(self, data): k..
-
jQuery get, post 요청Programing/Javascript 2013. 1. 18. 10:53
GET 요청 (http://www.w3schools.com/jquery/ajax_get.asp) Send an HTTP GET request to a page and get the result back GET을 POST만 바꿔주면 된다. 사용법에 있어서는 다를게 없는듯....Post 요청 (http://www.w3schools.com/jquery/ajax_post.asp) Send an HTTP POST request to a page and get the result back
-
PHP 세션 유지 설정Programing/PHP 2012. 12. 3. 14:02
session.cookie_lifetime = 0; 브라우저로 전송한 쿠키의 수명을 초 단위로 지정. 값 0은 "브라우저를 닫을 때까지"를 의미. 기본값 0. session.cache_expire = 360; session.cache_expire는 분 단위로 캐시한 세션 페이지가 살아있을 시간을 지정. session.gc_maxlifetime = 21600; session.gc_maxlifetime은 데이터가 '쓰레기'로 취급되고 청소할 시간을 초 단위로 지정.; 쓰레기 수거는 세션 시작시에 일어남.
-
Net::HTTPHeader로 웹 요청하기Programing/Ruby 2012. 11. 20. 15:27
참고 http://www.ruby-doc.org/stdlib-1.9.3/libdoc/net/http/rdoc/Net/HTTP.html http://www.rubyinside.com/nethttp-cheat-sheet-2940.html GET require "net/http" require "uri" uri = URI.parse("http://b10s.org") # Will print response.body Net::HTTP.get_print(uri) # Shortcut response = Net::HTTP.get_response(uri) print response.body # Full http = Net::HTTP.new(uri.host, uri.port) response = http.request(N..
-
Ruby & Ruby on rails 설치Programing/Ruby 2012. 11. 16. 17:02
우분투(12.04 LTS)에 루비 온 레일스 설치를 하는데 별에 별 삽질을 해도 안되더라심지어 레일스 책에서 시키는대로 해도 안되는....(이건 뭐...) 답답해서 검색을 하다보니 친절하게 스크립트를 작성해둔 용자분이 있었다.https://github.com/rkjha/RailsOnUbuntu/blob/master/rails-installer.sh 혹시 rvm 관련해서 오류가 난다면 apt-get 을 이용해 rvm을 설치한 후 진행하도록 하자$ sudo apt-get install ruby-rvm