码迷,mamicode.com
首页 > 其他好文 > 详细

XE6 MD5 加密算法

时间:2014-09-17 13:23:32      阅读:250      评论:0      收藏:0      [点我收藏+]

标签:style   io   os   ar   strong   for   sp   cti   on   

XE6 MD5 加密算法
Delphi

function MD5(const texto: string): string; var idmd5: TIdHashMessageDigest5; begin idmd5 := TIdHashMessageDigest5.Create; try result := idmd5.HashStringAsHex(texto); finally idmd5.Free; end; end;


c++builder
#include <IdHashMessageDigest.hpp>

String __fastcall MD5(const String texto)
{
    String result;
    TIdHashMessageDigest5 *idmd5= new TIdHashMessageDigest5();
    try
    {
       result= idmd5->HashStringAsHex(texto);
    }
    __finally
    {
       delete idmd5;
    }
    return result;
}

XE6 MD5 加密算法

标签:style   io   os   ar   strong   for   sp   cti   on   

原文地址:http://www.cnblogs.com/cb168/p/3976795.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!