- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
好吧,我有一个选择文本的代码,并将其转换为 NSData,然后使用 AES-256 对其进行加密,然后将此 NSData 转换为 NSString 以显示加密的消息,我按如下方式执行此操作:
NSString *text = @"This is a simple text";
NSData* data = [text dataUsingEncoding:NSUTF8StringEncoding];
NSData *dataEnc = [data AES256EncryptWithKey:@"12556"];
NSString *stringCrypt = [[NSString alloc] initWithData:dataEnc encoding:NSUTF8StringEncoding];
NSData *dataDesc = [dataEnc AES256DecryptWithKey:@"12556"];
NSString *string = [[NSString alloc] initWithData:dataDesc encoding:NSUTF8StringEncoding];
NSLog(@"Text normal -> %@",text);
NSLog(@"Text with AES -> %@",stringCrypt);
NSLog(@"Text with AES decrypted -> %@",string);
我的 NSLog 的输出是:
Text normal -> this is a simple text
Text with AES -> (null)
Text With AES decrypted -> this is a simple text
所以问题出在代码上:
NSString *stringCrypt = [[NSString alloc] initWithData:dataEnc encoding:NSUTF8StringEncoding];
返回一个空字符串,在这种情况下我需要将该字符串插入到文本文件中,如何解决这个问题?为什么这会返回空值?
EDIT
将其转换为AES256的函数是:
- (NSData *)AES256EncryptWithKey:(NSString *)key {
// 'key' should be 32 bytes for AES256, will be null-padded otherwise
char keyPtr[kCCKeySizeAES256+1]; // room for terminator (unused)
bzero(keyPtr, sizeof(keyPtr)); // fill with zeroes (for padding)
// fetch key data
[key getCString:keyPtr maxLength:sizeof(keyPtr) encoding:NSUTF8StringEncoding];
NSUInteger dataLength = [self length];
//See the doc: For block ciphers, the output size will always be less than or
//equal to the input size plus the size of one block.
//That's why we need to add the size of one block here
size_t bufferSize = dataLength + kCCBlockSizeAES128;
void *buffer = malloc(bufferSize);
size_t numBytesEncrypted = 0;
CCCryptorStatus cryptStatus = CCCrypt(kCCEncrypt, kCCAlgorithmAES128, kCCOptionPKCS7Padding,
keyPtr, kCCKeySizeAES256,
NULL /* initialization vector (optional) */,
[self bytes], dataLength, /* input */
buffer, bufferSize, /* output */
&numBytesEncrypted);
if (cryptStatus == kCCSuccess) {
//the returned NSData takes ownership of the buffer and will free it on deallocation
return [NSData dataWithBytesNoCopy:buffer length:numBytesEncrypted];
}
free(buffer); //free the buffer;
return nil;
}
Solved
正如用户 Zaph 所说,我需要使用 -base64EncodedDataWithOptions
,在我的例子中,我这样做:
NSString *text = @"This is a simple text";
NSData* data = [text dataUsingEncoding:NSUTF8StringEncoding];
NSData *dataEnc = [data AES256EncryptWithKey:@"12556"];
NSData *daes = [dataEnc base64EncodedDataWithOptions:NSDataBase64Encoding64CharacterLineLength];
NSString *stringCrypt = [[NSString alloc] initWithData:daes encoding:NSUTF8StringEncoding];
NSData *decodedData = [[NSData alloc] initWithBase64EncodedString:stringCrypt options:0];
NSData *dataDesc = [decodedData AES256DecryptWithKey:@"12556"];
NSString *string = [[NSString alloc] initWithData:dataDesc encoding:NSUTF8StringEncoding];
NSLog(@"Text Normal -> %@",text);
NSLog(@"Text with AES (BASE64) -> %@",stringCrypt);
NSLog(@"Text with AES decrypted -> %@",string);
在这种情况下,我只需要将它转换为 base64 字符串,现在我可以将这些值存储在文本值中,其他设备可以获取该文本并进行解密。谢谢大家。
最佳答案
我预计您的 initWithData
会失败,因为 dataEnc
肯定不包含 UTF8 字节。假设您的 AES256 加密代码工作正常,它将返回看起来基本上是随机的二进制数据。它实际上无法转换为字符串,除非您执行类似逐字节遍历它并输出十六进制值的操作。
您可以使用其 writeToFile
之一将加密的 NSData 直接写入文件方法。
关于ios - initWithData 返回(空),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29503546/
我有一个NSData,其图像解码为Base 64。 我想在UIImage中转换此数据,但是.... NSData * data = [[NSData alloc] initWithContentsOf
我正在尝试编写一个异步图像下载器。我使用 NSURLConnection 将数据获取到 NSMutableData 中,并在完成后使用该数据来初始化 UIImage。 我检查了字节,它正确下载了整个图
我需要根据从服务器下载的原始数据来初始化图像,该服务器根据 iPhone 客户端的类型提供正确的图像大小。 我知道我应该在 640x960 显示屏上将比例值设置为 2.0,但是这是一个只读属性,在使用
我使用下面的代码用 NSData 初始化了一个 AVAudioPlayer 对象,它又在我的主包中有一个 mp3 的数据。 NSError *error; NSString *filePathForB
好吧,我有一个选择文本的代码,并将其转换为 NSData,然后使用 AES-256 对其进行加密,然后将此 NSData 转换为 NSString 以显示加密的消息,我按如下方式执行此操作: NSS
我正在尝试从远程 URL 播放音频。 let audioData = try! Data.init(contentsOf: URL) do { self.audioPlaye
我正在 iOS 中的 UIImage 上工作,发现两种方法可以完成相同的工作 - (id)initWithData:(NSData *)data // (instance metho
我有一个管理 UICollectionView 的 viewController。我有一个从 cellForItemAtIndexPath 调用的辅助方法,它为单元格中的标签提供 NSAttribut
各位 NSString 的 initWithData 方法在额外的引号中返回值,我该如何解决?例如: NSString *result = [[NSString alloc] initWithData
我正在通过 NSURLConnection 从网站中提取数据,并将接收到的数据存储在 NSMutableData 的实例中。在 connectionDidFinishLoading 委托(delega
我有一个基于 RTSP/UDP 的 MJPEG 流,我想从中使用 [UIImage initWithData:] 为 UIImageView 生成 JPEG。大多数时候这很好用,但有时我会收到损坏的图
我在 tableview 中显示不同类型的内容,并在 heightForRowAtIndexPath 中使用不同的自定义方法计算每个单元格的高度。 这些自定义方法之一意味着转换 NSMutableAt
我正在从 NSData 对象创建 NSInputStream,但创建流后报告 hasBytesAvailable 为“否”: NSData* data = [outputStream property
我想以编程方式生成声波并使用 AVAudioPlayer 播放它。我有代码将波形编码为线性 PCM、44100Hz、单声道、每个样本 8 位。 我不清楚我需要用什么样的信封来包裹这个缓冲区,以便 AV
我目前正在开发一个应用程序,它可以一个接一个地显示许多图像。不幸的是,我没有为此使用视频的奢侈,但是,我可以选择正在使用的图像编解码器。数据从服务器发送到应用程序,已经编码。 例如,如果我使用 PNG
我正在尝试用 HTML 字符串填充 UITableView。获取字符串,将它们放入单元格等。一切正常。我想更改我的 NSAttributedText 的字体和字体大小。我写了下面的代码。 我通过第一个
打电话 NSAttributedString * as = [[NSAttributedString alloc] initWithData:[htmlString dataUsingEncoding
我有一个应用程序在 App Store 中正常运行了 6 个月左右,但它的任何图像(通过“NSURLConnection initWithRequest”从网站下载)都没有显示在 iOS 4.3 中。
以下代码阻止了 UI(在图像加载完成之前无法点击另一个选项卡)。 我已经验证它是 UIImage *imageToShow = [[UIImage alloc] initWithData:data];
下面的代码似乎没有加载图像。 uiTabBarItem = [[UITabBarItem alloc] init]; NSData *datatmp = [NSData dataWithContent
我是一名优秀的程序员,十分优秀!