美文网首页
[NSBundle mainBundle] pathForRes

[NSBundle mainBundle] pathForRes

作者: G_M | 来源:发表于2016-09-21 15:29 被阅读1021次

从bundle中获取数据,明明把数据添加到项目中了,但就是不对。打印出来的都是空

 //原始数据
    NSString *originalString = @"这是一段将要使用'.der'文件加密的字符串!";
    
    //使用.der和.p12中的公钥私钥加密解密
    NSString *public_key_path = [[NSBundle mainBundle] pathForResource:@"public_key.der" ofType:nil];
    NSString *private_key_path = [[NSBundle mainBundle] pathForResource:@"private_key.p12" ofType:nil];
    
    NSString *encryptStr = [RSAEncryptor encryptString:originalString publicKeyWithContentsOfFile:public_key_path];
    NSLog(@"加密前:%@", originalString);
    NSLog(@"加密后:%@", encryptStr);
    NSLog(@"解密后:%@", [RSAEncryptor decryptString:encryptStr privateKeyWithContentsOfFile:private_key_path password:@"55555"]);

后来从网上查到相关信息,当时添加是直接拖拽过去,没有真正加入到bundle中,需要在项目设置中,build phases-》copy bundle resources 下面添加自己的数据就可以了。

屏幕快照 2016-09-21 15.08.55.png

相关文章

网友评论

      本文标题:[NSBundle mainBundle] pathForRes

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