123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- //
- // RSADataVerifier.m
- // AliSDKDemo
- //
- // Created by 亦澄 on 16-8-12.
- // Copyright (c) 2016年 Alipay. All rights reserved.
- //
- #import "RSADataVerifier.h"
- #import "openssl_wrapper.h"
- #import "NSDataEx.h"
- #import "base64.h"
- @implementation RSADataVerifier
- - (id)initWithPublicKey:(NSString *)publicKey {
- if (self = [super init]) {
- _publicKey = [publicKey copy];
- }
- return self;
- }
- - (NSString *)formatPublicKey:(NSString *)publicKey {
-
- NSMutableString *result = [NSMutableString string];
-
- [result appendString:@"-----BEGIN PUBLIC KEY-----\n"];
-
- int count = 0;
-
- for (int i = 0; i < [publicKey length]; ++i) {
-
- unichar c = [publicKey characterAtIndex:i];
- if (c == '\n' || c == '\r') {
- continue;
- }
- [result appendFormat:@"%c", c];
- if (++count == 76) {
- [result appendString:@"\n"];
- count = 0;
- }
-
- }
-
- [result appendString:@"\n-----END PUBLIC KEY-----\n"];
-
- return result;
-
- }
- - (BOOL)verifyString:(NSString *)string withSign:(NSString *)signString withRSA2:(BOOL)rsa2 {
-
- NSString *documentPath = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];
- NSString *path = [documentPath stringByAppendingPathComponent:@"AlixPay-RSAPublicKey"];
-
- //
- // 把密钥写入文件
- //
- NSString *formatKey = [self formatPublicKey:_publicKey];
- [formatKey writeToFile:path atomically:YES encoding:NSUTF8StringEncoding error:nil];
-
- BOOL ret;
- rsaVerifyString(string, signString, path, &ret, rsa2);
- return ret;
-
- }
- @end
|