MD5 哈希来发布图像
你好 我正在使用下面的代码来发布图像,并且我想在此代码中应用 MD5 散列
NSData *imageData = UIImageJPEGRepresentation(imageView.image, 50) ; ;
EDAMResource *imageResource = [[[EDAMResource alloc]init]autorelease];
EDAMData *imageData1 =[[EDAMData alloc]initWithBodyHash:imageData
size:[imageData length] body:imageData ];
[imageResource setData:imageData1];
[imageResource setRecognition:imageData1];
NSString *mime = [[[NSString alloc]initWithString:@"image/jpeg" ] autorelease];
[imageResource setMime:mime];
NSArray *imageArray = [[NSArray alloc]initWithObjects:imageResource,nil];
[note setResources:imageArray];
是否可以在此代码中应用 md5 散列,如果可以,那么我该怎么做?
Hi
I am using below code to post image and I want to apply MD5 hashing in this code
NSData *imageData = UIImageJPEGRepresentation(imageView.image, 50) ; ;
EDAMResource *imageResource = [[[EDAMResource alloc]init]autorelease];
EDAMData *imageData1 =[[EDAMData alloc]initWithBodyHash:imageData
size:[imageData length] body:imageData ];
[imageResource setData:imageData1];
[imageResource setRecognition:imageData1];
NSString *mime = [[[NSString alloc]initWithString:@"image/jpeg" ] autorelease];
[imageResource setMime:mime];
NSArray *imageArray = [[NSArray alloc]initWithObjects:imageResource,nil];
[note setResources:imageArray];
Is to possible to apply md5 hashing in this code and if yes then how could I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
github 上有一些来自 iPhoneRecipeBook 的示例代码展示如何处理 Evernote 的 MD5 哈希值。
There is some sample code on github from the iPhoneRecipeBook that shows how to handle MD5 hashes for Evernote.