摘要:
用DES实现加密和解密的过程:(注释是我自己理解添加。不对的地方望指出).h文件中:[cpp] view plaincopy+ (NSString *)encryptWithText:(NSString *)sText;//加密 + (NSString *)decryptWithText:(NSS... 阅读全文
摘要:
des加密主要用CCCrypt函数(只有ios5中有的),这个函数的头文件:#importCommonCrypto/CommonCryptor.h主要思路是:加密:用CCCrypt函数加密一下,然后用base64编码下,传过去。解密:先把收到的数据根据base64,decode一下,然后再解密一下,... 阅读全文