Enum

This framework is written with the Objective-C

IWKeyEnum.h

ALGORITHM_TYPE

typedef NS_ENUM(NSInteger, ALGORITHM_TYPE){
    ALGORITHM_SECP256K1               =   0
};

Description

  • This is the key algorithm type in IWKey class

AES_TYPE

typedef NS_ENUM(NSInteger, AES_TYPE){
    AES_TYPE128    =   0,
    AES_TYPE256
};

Description

  • This is AES type in AESCryption class

ENCRYPTION_TYPE

typedef NS_ENUM(NSInteger, ENCRYPTION_TYPE){
    ENCRYPTION_TYPE_AES_128    =   0,
    ENCRYPTION_TYPE_AES_256
};

Description

  • This is encryption type in IWRecoveryManager class

BACKUP_OPTION

typedef NS_OPTIONS(int8_t, BACKUP_OPTION){
    BACKUP_OPTION_TOTAL         =   0,
    BACKUP_OPTION_DID_DOCUMENT  =   1<<0,
    BACKUP_OPTION_CLAIM         =   1<<1,
    BACKUP_OPTION_KEY           =   1<<2
};

Description

  • This is back-up type in IWRecoveryManager class

Last updated