首页 > 代码库 > iOS RSA的加密和签名
iOS RSA的加密和签名
1、RSA加密使用服务端给的公钥.pem,RSA签名使用客户端的私钥.pem。
参考文章:http://www.jianshu.com/p/4580bee4f62f
把文件夹导入项目中,然后配置这两个地方就OK了,如果是新建项目记得关闭Bitcode.
关键代码
HBRSAHandler* handler = [HBRSAHandler new]; //加密 NSString *PublicFilePath = [[NSBundle mainBundle] pathForResource:@"serverPubKey.pem" ofType:nil]; [handler importKeyWithType:KeyTypePublic andPath:PublicFilePath];//加载公钥 NSString *test = @"需要加密的数据"; test = [handler encryptWithPublicKey:test]; NSLog(@"加密结果 =%@",test); //签名 NSString *privateKeyFilePath = [[NSBundle mainBundle] pathForResource:@"clientPriKey.pem" ofType:nil]; [handler importKeyWithType:KeyTypePrivate andPath:privateKeyFilePath];//加载私钥 NSString *xml = @"this is test message!"; xml = [handler signString:xml]; NSLog(@"签名结果:%@",xml);
公钥和私钥都是字符串,用字符串加密也可以。
Dem下载 密码:4bpw
iOS RSA的加密和签名
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。