RSADataVerifier.m 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. //
  2. // RSADataVerifier.m
  3. // AliSDKDemo
  4. //
  5. // Created by 亦澄 on 16-8-12.
  6. // Copyright (c) 2016年 Alipay. All rights reserved.
  7. //
  8. #import "RSADataVerifier.h"
  9. #import "openssl_wrapper.h"
  10. #import "NSDataEx.h"
  11. #import "base64.h"
  12. @implementation RSADataVerifier
  13. - (id)initWithPublicKey:(NSString *)publicKey {
  14. if (self = [super init]) {
  15. _publicKey = [publicKey copy];
  16. }
  17. return self;
  18. }
  19. - (NSString *)formatPublicKey:(NSString *)publicKey {
  20. NSMutableString *result = [NSMutableString string];
  21. [result appendString:@"-----BEGIN PUBLIC KEY-----\n"];
  22. int count = 0;
  23. for (int i = 0; i < [publicKey length]; ++i) {
  24. unichar c = [publicKey characterAtIndex:i];
  25. if (c == '\n' || c == '\r') {
  26. continue;
  27. }
  28. [result appendFormat:@"%c", c];
  29. if (++count == 76) {
  30. [result appendString:@"\n"];
  31. count = 0;
  32. }
  33. }
  34. [result appendString:@"\n-----END PUBLIC KEY-----\n"];
  35. return result;
  36. }
  37. - (BOOL)verifyString:(NSString *)string withSign:(NSString *)signString withRSA2:(BOOL)rsa2 {
  38. NSString *documentPath = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];
  39. NSString *path = [documentPath stringByAppendingPathComponent:@"AlixPay-RSAPublicKey"];
  40. //
  41. // 把密钥写入文件
  42. //
  43. NSString *formatKey = [self formatPublicKey:_publicKey];
  44. [formatKey writeToFile:path atomically:YES encoding:NSUTF8StringEncoding error:nil];
  45. BOOL ret;
  46. rsaVerifyString(string, signString, path, &ret, rsa2);
  47. return ret;
  48. }
  49. @end