201604-26 Delphi加密算法des源码 unit dmdes; { ********************************************************* } { * DELPHI、PHP、C#通用DES编码解码单元 * } { * 由TurboPower LockBox部分代码改写 * } { * 滕州市东鸣软件工作室制作 ZWF 2011-12-27 * * update by wh 2012-1.... 阅读全文
201604-24 Windows10下安装OpenSSL 做毕业设计需要用到OpenSSL,但在网上没找到比较理想的安装方法,因此我综合Windows系列的安装方法完成Windows10下安装的方法 安装环境:Windows10专业版+VS2013 工具:ActivePerl-5.22.1.2201-MSWin32-x.... 阅读全文
201604-24 Delphi import unit per OpenSSL DLL RSA+MD5 signature A nice contribute by Dim (Russia) Require libeay32.pas, v. >= 0.7 // Equivalent to: // openssl dgst -md5 -sign private.pem -hex -out test.hex function Sign_RSA_MD5(privatekey.... 阅读全文
201604-24 如何利用WINHTTP访问不信任的HTTPS呢 所以,在调用 Send 方法之前,加上这句代码就ok了: _variant_t val = 0x3300; pHttpReq->PutOption(WinHttpRequestOption_SslErrorIgnoreFlags, val); .... 阅读全文
201604-23 Hash a file with MD5 This tutorial continues from Encrypt a file. Setup Put another button on the main form and caption it "Hash". Add a THash component to the form and connect it up to the .... 阅读全文
201604-23 Encrypting a file with 3DES http://lockbox.seanbdurkin.id.au/Encrypt+a+file n this tutorial, we are going to use a component based approach to encrypt some files. .... 阅读全文
201604-21 Delphi IdHttp组件+IdHttpServer组件实现文件下载服务 http://blog.csdn.net/xxkku521/article/details/16864759 uses idhttp,IdHTTPServer; //idhttp组件提交下载请求 procedure TVodService.Button3Click(Sender: TObject); var h:TIdhttp; MyStream:TMemoryStream.... 阅读全文
201604-21 Delphi – 打造自己的Web(HTTP)服务器 unit Unit1; interface uses ...... ActiveX,IdBaseComponent, IdComponent, IdCustomTCPServer, IdCustomHTTPServer,IdHTTPServer,IdTCPServer,IdContext; type ...... procedure Server1CommandGet(AContex.... 阅读全文
201604-21 Rad Studio 10.1 Berlin,Delphi 10.1 Berlin,C++ Builder 10.1 Berlin 官方ISO下载 官网下载地址: http://altd.embarcadero.com/download/radstudio/10.1/delphicbuilder10_1.iso.... 阅读全文
201604-20 AJAX POST请求中参数以form data和request payload形式在servlet中的获取方式 http://blog.csdn.net/mhmyqn/article/details/25561535 HTTP请求中,如果是get请求,那么表单参数以name=value&name1=value1的形式附到url的后面,如果是 post请求,那么表单参数是在请求体中,也是以name=value&name1=value1的形式在请求体中。通过chrome的开.... 阅读全文