📃
OmniOne Developer Site
  • Introduction
  • Manager console guide
    • To begin with...
      • Wallet Settings
      • Select an Account
      • The Issuer/SP account creation
      • Issue access token for the OmniOne Agent
    • Issuer Console
      • Claim
      • VC Type
      • VC Format
      • Issue the VC Information
      • My request list
    • SP Console
      • Service List
      • Token Transaction History
      • My service request
  • Server system construction
    • To begin with...
      • Server Wallet creation and Key settings
      • Collect the Issuer and SP's DID
      • application.properties settings
    • Server default environment configuration per IDE
      • Spring Tool Suite 4
      • IntelliJ IDEA
    • Building the Issuer system
      • Issuer server guide(JAVA)
    • Building the SP system
      • SP server guide (JAVA)
  • Checking Blockchain data
    • Check Agent API
      • bp
      • Committee
      • DID
      • executor
      • key
      • pDID
      • player
      • policy
      • txinfo
      • txissue
      • vc
      • version
      • response codes
  • SDK instruction guide
    • Core SDK Guide
      • Java Wallet
        • IWKeyManager
        • IWDIDManager
        • IWRecoveryManager
        • ZkpException
        • IWException
      • iOS Wallet
        • IWKeyManager
        • IWDidManager
        • IWClaimManager
        • IWRecoveryManager
        • IWErrorManager
        • Enum
    • Server SDK Guide
      • Java
        • ServerInfo
        • IssuerApi
        • SpApi
        • VcResult
        • VcInitParam
        • VCRegParam
        • VcVerifyParam
        • SpProfileParam
    • Omni App Link SDK
      • Server
      • Android
      • IOS
  • Node creation
    • Full Node creation
      • Full Node by using Docker
        • Docker Installation
        • Building Full Node
        • Full Node settings
      • Installation type Full Node
        • Full Node installation
    • BP Node creation
      • BP Node by using Docker
        • Docker Installation
        • Building BP Node
        • BP Node settings
          • keosd/BP Node executing simultaneously
      • Installation type BP
        • Node Installation
        • Executing Node
        • Node settings
        • BP Vote
Powered by GitBook
On this page

Was this helpful?

  1. SDK instruction guide
  2. Core SDK Guide
  3. iOS Wallet

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

PreviousIWErrorManagerNextServer SDK Guide

Last updated 4 years ago

Was this helpful?