Category Archives: 資訊安全

General Security Issues

TLS 1.0 RSA Encryption Integer Factorization  Lenstra elliptic curve factorization It may use factorization to enhance my assumption. 😛

Posted in 學術, 資訊安全 | Leave a comment

Some interesting articles

http://www.bnext.com.tw/article/view/cid/0/id/18789 http://www.netadmin.com.tw/article_content.aspx?sn=1106160006 http://www.zdnet.com/blog/virtualization/what-is-a-trusted-cloud/978 http://www.trustedcomputinggroup.org/files/resource_files/1F4DEE3D-1A4B-B294-D0AD0742BA449E07/Cloud%20Computing%20and%20Security%20Whitepaper_July29.2010.pdf http://www.safenet-inc.com/products/data-protection/data-encryption-control/datasecure/

Posted in cloud computing, 學術, 學術研究, 資訊安全 | Leave a comment

AIM 2012 Call for Papers

——————————————————————————————————————————————————–                        The 2012 FTRA International Conference on                 Advanced IT, engineering and Management (FTRA AIM 2012)          http://web.ftrai.org/aim2012                                    Hosted by FTRA                   Supported by KITCS, Korea Tourism Organization                           Seoul, Korea, Feb. 6-8, 2012============================================================[Important Date]Abstract Paper Submission due:  Dec. 16, 2011All accepted abstract papers … Continue reading

Posted in 學術, 學術研究, 資工, 資訊安全 | Leave a comment

CAPTCHA

        CAPTCHA全名是(Completely Automated Public Turing test to tell Computers and Humans Apart),中文翻譯為「全自動公開區分電腦與人類圖靈測試」,由於近年來黑客用機器人程式破解網站帳號密碼的事件不斷發生,因此科學家藉由人類影像辨識遠優於電腦程式的特性,發展出此一機制。         目前大家比較常在用的CHAPTCHA為 reCHAPTCHA,此一程式是由卡內基美隆大學發展出來,他們原本藉由電腦來辨識古老書籍,讓圖書電子化。但是電腦的辨識度不足,執行困難的情況下,便藉由這個程式,讓人類幫他辨識。目前此一計畫由Google支援。    reCHAPTCHA官方網站:http://www.google.com/recaptcha         另外,筆者在此介紹PHP版本的CHAPTCHA產生器:Securimage,此一程式套件也是一個免費套件。協助程式設計師開發出更為安全的網頁程式。    Securimage官方網站:http://www.phpcaptcha.org/Reference 小薑雜談:CAPTCHA reCAPTCHA Securimage

Posted in PHP, 程式設計, 網頁撰寫, 資工, 資訊安全 | Leave a comment

[資工][資訊安全] IBE, HIDE Scheme

事前準備 目前我用的環境平台如下: 作業系統:Ubuntu Linux 11.04 LTS 64bits Compiler: g++ 相關步驟:請至MIRACL官方首頁下載miracl.zip 解壓縮: unzip -j -aa -L miracl.zip 安裝: bash linux64 ID-Based Encryption Scheme (IBE) 由Boneh, Franklin於2001年發表,相關範例可由MIRACL中的ibe.cpp編譯,以下是編譯方法: g++ -c -m64 -O2 ibe_set.cpp ibe_ext.cpp ibe_enc.cpp ibe_dec.cppar r miracl.a ibe_set.o ibe_ext.o ibe_enc.o ibe_dec.o 這裡要注意的是,若編譯ibe.cpp時,由於程式寫法的關係,它會回報第101行有錯誤。因此,到ibe.cpp: … Continue reading

Posted in 資工, 資訊安全 | 4 Comments

[C/C++] 資訊安全常用演算法函式庫

在看資訊安全論文的時候,偶然下發現的演算法函式庫。 請至http://www.shamus.ie/index.php?page=Downloads 下載。 此函式庫為C/C++撰寫而成,包含了RSA的encode與decode、橢圓曲線的gen與degen等等。

Posted in C/C++, 資工, 資訊安全 | Leave a comment