123456789101112131415161718 |
- //
- // PBTool.h
- // PBSDK_Example
- //
- // Created by 陈民 on 2024/12/15.
- // Copyright © 2024 uxiume. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface PBTool : NSObject
- //RSA加密
- + (NSString*)lockWithPublicKeyWithContent:(NSString*)content;
- @end
- NS_ASSUME_NONNULL_END
|