class SealdAnonymousTmrRecipient
objc
@interface SealdAnonymousTmrRecipient : NSObjectSealdAnonymousTmrRecipient represents a TMR recipient.
| Members | Descriptions |
|---|---|
authFactor | The authentication method, to which SSKS has sent a challenge at the request of your app's server. |
rawOverEncryptionKey | The over encryption key. |
initWithAuthFactor:rawOverEncryptionKey: | Initialize a SealdAnonymousTmrRecipient instance. |
authFactor
objc
@property (strong) SealdTmrAuthFactor * authFactor;The authentication method, to which SSKS has sent a challenge at the request of your app's server.
rawOverEncryptionKey
objc
@property (strong) NSData * rawOverEncryptionKey;The over encryption key.
initWithAuthFactor:rawOverEncryptionKey:
objc
- (instancetype) initWithAuthFactor:(SealdTmrAuthFactor *)authFactor
rawOverEncryptionKey:(NSData *)rawOverEncryptionKey;Initialize a SealdAnonymousTmrRecipient instance.
Parameters
authFactorThe authentication factor.rawOverEncryptionKeyThe over encryption key.