HKDF

enum HKDF : Enum<HKDF> (source)

RFC 5869 HKDF using an HMAC based on the passed digest.

To obtain an actual KDF for key derivation, invoke as (info = ...)

Entries

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Types

Link copied to clipboard
object Companion
Link copied to clipboard
inner class WithInfo : KDF

The actual HKDF instance configured with info set.

Properties

Link copied to clipboard
Link copied to clipboard

Returns a representation of an immutable list of all enum entries, in the order they're declared.

Link copied to clipboard
val hmac: HMAC
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
operator fun invoke(info: ByteArray): HKDF.WithInfo

Creates a fully instantiated HKDF object with info

Link copied to clipboard
fun valueOf(value: String): HKDF

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Link copied to clipboard
fun values(): Array<HKDF>

Returns an array containing the constants of this enum type, in the order they're declared.