Skip to content

class SealdAnonymousTmrRecipient

objc
@interface SealdAnonymousTmrRecipient : NSObject

SealdAnonymousTmrRecipient represents a TMR recipient.

MembersDescriptions
authFactorThe authentication method, to which SSKS has sent a challenge at the request of your app's server.
rawOverEncryptionKeyThe 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

  • authFactor The authentication factor.

  • rawOverEncryptionKey The over encryption key.