PBTool.h 320 B

123456789101112131415161718
  1. //
  2. // PBTool.h
  3. // PBSDK_Example
  4. //
  5. // Created by 陈民 on 2024/12/15.
  6. // Copyright © 2024 uxiume. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface PBTool : NSObject
  11. //RSA加密
  12. + (NSString*)lockWithPublicKeyWithContent:(NSString*)content;
  13. @end
  14. NS_ASSUME_NONNULL_END