brintos

brintos / linux-shallow public Read only

0
0
Text · 490 B · 3ec335d Raw
21 lines · c
1/* SPDX-License-Identifier: GPL-2.0-only */2/*3 * Copyright (C) 2021 sigma star gmbh4 *5 * Specifies paes key slot handles for NXP's DCP (Data Co-Processor) to be used6 * with the crypto_skcipher_setkey().7 */8 9#ifndef MXS_DCP_H10#define MXS_DCP_H11 12#define DCP_PAES_KEYSIZE 113#define DCP_PAES_KEY_SLOT0 0x0014#define DCP_PAES_KEY_SLOT1 0x0115#define DCP_PAES_KEY_SLOT2 0x0216#define DCP_PAES_KEY_SLOT3 0x0317#define DCP_PAES_KEY_UNIQUE 0xfe18#define DCP_PAES_KEY_OTP 0xff19 20#endif /* MXS_DCP_H */21