challengeFormat (property)

The format in which the challenge will be created.

Syntax

@property (nonatomic,readwrite,assign,getter=challengeFormat,setter=setChallengeFormat:) int challengeFormat;
- (int)challengeFormat;
- (void)setChallengeFormat:(int)newChallengeFormat;

/* Possible Values */
CF_ALPHANUMERIC(0),
CF_NUMERIC(1),
CF_HEX(2)
public var challengeFormat: OcraChallengeFormats {
  get {...}
set {...} }
public enum OcraChallengeFormats : Int32 { case cfAlphanumeric = 0 case cfNumeric = 1 case cfHex = 2 }

Default Value

0

Remarks

This setting specifies the format of the created challenge. This is applicable when calling CreateChallenge. Possible values are:

0 (cfAlphanumeric - default) Alphanumeric characters
1 (cfNumeric) Digits
2 (cfHex) Hex characters

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