HMAC-SHA1 代码示例
我正在 Objective-c 中搜索 hmac-sha1 代码示例 我看到这个示例,它看起来清晰易读,问题是有一行不清楚:
NSString *hash = [HMAC base64Encoding];
那家伙说 base64Encoding 是他的自定义代码...
你能帮我填补空白并建议我需要在那里放什么吗?
谢谢。
I'm searching for a hmac-sha1 code sample in objective-c
I saw this sample and it looks clear and readable, the problem is that there is there one unclear line:
NSString *hash = [HMAC base64Encoding];
And the guy said that base64Encoding is a custom code of his...
Can you help me fill the blank and advice what i need to put there instead?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我通常将其放在这样的类别中:
这是您可以使用的方法:
I usually make it in a category like this:
And here is the method you can use: