IPWorks Encrypt 2020 iOS Edition

Questions / Feedback?

version (property)

The PBKDF version.

Syntax

@property (nonatomic,readwrite,assign,getter=version,setter=setVersion:) int version;
- (int)version;
- (void)setVersion:(int)newVersion;

/* Possible Values */
V_PBKDF1(0),
V_PBKDF2(1)
public var version: PbkdfVersions {
  get {...}
set {...} }
public enum PbkdfVersions : Int32 { case vPBKDF1 = 0 case vPBKDF2 = 1 }

Default Value

1

Remarks

This property specifies the PBKDF version to be used. It is recommended to use PBKDF2 for new applications. PBKDF1 is included only for compatibility with existing applications and is not recommended.

Possible values are:

  • 0 (vPBKDF1)
  • 1 (vPBKDF2 - default)

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