OliveappBase64Helper.h 366 B

123456789101112131415161718
  1. //
  2. // Base64Helper.h
  3. // YituFaceVerifiactionSDK
  4. //
  5. // Created by Jiteng Hao on 15/10/8.
  6. // Copyright © 2015年 YITU. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface OliveappBase64Helper : NSObject
  10. + (NSString*) encode: (NSData*) data;
  11. // NOTE: this code is not tested
  12. + (NSData*) decode: (NSString*) encoded;
  13. @end