Home > database >  Evaluate a DES/AES encryption algorithm of DLL or pb
Evaluate a DES/AES encryption algorithm of DLL or pb

Time:09-22

Thanks.

To find the relevant DLL, no points, can not download..

Please send email to [email protected]

CodePudding user response:

Comapi seems to support a variety of encryption or hash

CodePudding user response:

http://baike.baidu.com/view/2918279.htm

CodePudding user response:

Has been sent to your email, please check!

WfEncode DLL provides interface is as follows:

StrResult=EnBase64 (" will be encrypted string ")
StrResult=DeBase64 (" will decrypt the string ")

StrResult=EnDes (" will be encrypted string ", "encrypted password")
StrResult=DeDes (" will decrypt the string ", "" password decryption)

StrResult=EnDesHex (" will be encrypted string ", "encrypted password")
StrResult=DeDesHex (" will decrypt the string ", "" password decryption)

StrResult=EnRandomDesHex (" will be encrypted string ", "encrypted password")
StrResult=DeRandomDesHex (" will decrypt the string ", "" password decryption)

StrResult=EnMD5 (" will be encrypted string ")

StrResult=EnBlowfish (" will be encrypted string ", "encrypted password")
StrResult=EnBlowfish (" will decrypt the string ", "" password decryption)

StrResult=EnAes (" will be encrypted string ", "encrypted password")
StrResult=DeAes (" will decrypt the string ", "" password decryption)

StrResult=EnWFsoft (" will be encrypted string ", "encrypted password")
StrResult=DeWFsoft (" will decrypt the string ", "" password decryption)
  • Related