美文网首页
加密 AES

加密 AES

作者: 飞天蛤蟆 | 来源:发表于2017-01-20 14:10 被阅读0次

    NSString *encryptedData = [AESCrypt encrypt:userName password:password];//加密
    NSString *message = [AESCrypt decrypt:encryptedData password:password]; //解密
    NSLog(@"加密结果 = %@",encryptedData);
    NSLog(@"解密结果 = %@",message);

    相关文章

      网友评论

          本文标题:加密 AES

          本文链接:https://www.haomeiwen.com/subject/opwwbttx.html