IPWorks Encrypt 2020 Kotlin Edition

Questions / Feedback?

HMACAlgorithm Property

The HMAC algorithm to use during encryption.

Syntax

public var hmacAlgorithm: EccHMACAlgorithms

public enum class EccHMACAlgorithms(val value: Int) {
iesHMACSHA1(0),
iesHMACSHA224(1),
iesHMACSHA256(2),
iesHMACSHA384(3),
iesHMACSHA512(4),
iesHMACRIPEMD160(5);
}

Default Value

2

Remarks

This property specifies the HMAC algorithm to use when encrypting. The HMAC algorithm is used when Encrypt and Decrypt are called to protect and verify data. Possible values are:

  • 0 (iesHMACSHA1)
  • 1 (iesHMACSHA224)
  • 2 (iesHMACSHA256 - Default)
  • 3 (iesHMACSHA384)
  • 4 (iesHMACSHA512)
  • 5 (iesHMACRIPEMD160)

This property is only applicable when calling Encrypt or Decrypt.

Copyright (c) 2021 /n software inc. - All rights reserved.
IPWorks Encrypt 2020 Kotlin Edition - Version 20.0 [Build 7941]