12345678910111213141516171819202122232425262728293031323334 |
- #import <Foundation/Foundation.h>
- @interface NCPushNotificationEncryption : NSObject
- + (NCPushNotificationEncryption *)sharedInstance;
- - (BOOL)generatePushNotificationsKeyPair:(NSString *)account;
- - (NSString *)decryptPushNotification:(NSString *)message withDevicePrivateKey:(NSData *)privateKey;
- @end
|