|
|
static final int | MECH_KDF_ENC_DATA = 0x40000000 |
| | Derive key using result of data encryption.
|
| |
|
static final int | MECH_KDF_ECDH = 0x50000000 |
| | Derive key using result of hash calculation over shared secret.
|
| |
|
static final int | MECH_KDF_ECDH_COF = 0x60000000 |
| | Same as CXI_MECH_KDF_ECDH but include cofactor of curve into hash calculation.
|
| |
|
static final int | MECH_KDF_DH = 0x70000000 |
| | Derive key using result of hash calculation over shared secret.
|
| |
|
static final int | MECH_KDF_XOR_BASE_AND_DATA = 0x80000000 |
| | XOR a base key and given data to derive key.
|
| |
|
static final int | MECH_KDF_CAT_BASE_AND_KEY = 0x90000000 |
| | Concatenate a base key with a second key to derive key.
|
| |
|
static final int | MECH_KDF_CAT_BASE_AND_DATA = 0xA0000000 |
| | Concatenate a base key with given data to derive key.
|
| |
|
static final int | MECH_KDF_CAT_DATA_AND_BASE = 0xB0000000 |
| | Concatenate given data with a base key to derive key.
|
| |
|
static final int | MECH_KDF_EXTRACT_KEY_FROM_KEY = 0xC0000000 |
| | Extract part of a base key to derive key.
|
| |