RSADataVerifier.h 384 B

12345678910111213141516171819
  1. //
  2. // RSADataVerifier.h
  3. // AliSDKDemo
  4. //
  5. // Created by 亦澄 on 16-8-12.
  6. // Copyright (c) 2016年 Alipay. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface RSADataVerifier : NSObject {
  10. NSString *_publicKey;
  11. }
  12. - (id)initWithPublicKey:(NSString *)publicKey;
  13. - (BOOL)verifyString:(NSString *)string withSign:(NSString *)signString withRSA2:(BOOL)rsa2;
  14. @end