passwordAlgorithm (property)

The algorithm used to create or validate the password.

Syntax

@property (nonatomic,readwrite,assign,getter=passwordAlgorithm,setter=setPasswordAlgorithm:) int passwordAlgorithm;
- (int)passwordAlgorithm;
- (void)setPasswordAlgorithm:(int)newPasswordAlgorithm;

/* Possible Values */
PA_TOTP(0),
PA_HOTP(1)
public var passwordAlgorithm: OnetimepasswordPasswordAlgorithms {
  get {...}
set {...} }
public enum OnetimepasswordPasswordAlgorithms : Int32 { case paTOTP = 0 case paHOTP = 1 }

Default Value

0

Remarks

This property specifies whether to use the HMAC-Based or Time-Based One Time Password algorithm. Possible values are:

0 (paTOTP - default) Time-Based One Time Password Algorithm.
1 (paHOTP) HMAC-Based One Time Password Algorithm.

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks Auth 2020 iOS Edition - Version 20.0 [Build 8155]