15#ifndef ZEPHYR_INCLUDE_CRYPTO_H_
16#define ZEPHYR_INCLUDE_CRYPTO_H_
46#define CAP_OPAQUE_KEY_HNDL BIT(0)
49#define CAP_RAW_KEY BIT(1)
52#define CAP_KEY_LOADING_API BIT(2)
55#define CAP_INPLACE_OPS BIT(3)
58#define CAP_SEPARATE_IO_BUFS BIT(4)
61#define CAP_SYNC_OPS BIT(5)
64#define CAP_ASYNC_OPS BIT(6)
67#define CAP_AUTONONCE BIT(7)
70#define CAP_NO_IV_PREFIX BIT(8)
183 "Driver should support at least one key type: RAW/Opaque");
186 "Driver should support at least one IO buf type: Inplace/separate");
189 "Driver should support at least one op-type: sync/async");
237 __ASSERT(
flags != 0U,
"Keytype missing: RAW Key or OPAQUE handle");
239 "conflicting options for keytype");
242 __ASSERT(
flags != 0U,
"IO buffer type missing");
244 "conflicting options for IO buffer type");
247 __ASSERT(
flags != 0U,
"sync/async type missing");
249 "conflicting options for sync/async");
268 return DEVICE_API_GET(crypto, dev)->cipher_free_session(dev, ctx);
310 "session invoking a different mode handler");
331 "session invoking a different mode handler");
358 "session invoking a different mode handler");
380 "session invoking a different mode handler");
402 "session invoking a different mode handler");
448 __ASSERT(
flags != 0U,
"IO buffer type missing");
450 "conflicting options for IO buffer type");
453 __ASSERT(
flags != 0U,
"sync/async type missing");
455 "conflicting options for sync/async");
Crypto Cipher structure definitions.
#define DEVICE_API_GET(_class, _dev)
Expands to the pointer of a device's API for a given class.
Definition device.h:1425
int(* crypto_api_cipher_begin_session)(const struct device *dev, struct cipher_ctx *ctx, enum cipher_algo algo, enum cipher_mode mode, enum cipher_op op_type)
Setup a crypto cipher session.
Definition crypto.h:91
int(* crypto_api_hash_free_session)(const struct device *dev, struct hash_ctx *ctx)
Cleanup a crypto hash session.
Definition crypto.h:119
int(* crypto_api_hash_async_callback_set)(const struct device *dev, hash_completion_cb cb)
Register an asynchronous crypto hash callback.
Definition crypto.h:125
int(* crypto_api_cipher_free_session)(const struct device *dev, struct cipher_ctx *ctx)
Cleanup a crypto cipher session.
Definition crypto.h:99
int(* crypto_api_query_hw_caps)(const struct device *dev)
Query crypto hardware capabilities.
Definition crypto.h:85
int(* crypto_api_cipher_async_callback_set)(const struct device *dev, cipher_completion_cb cb)
Register an asynchronous crypto cipher callback.
Definition crypto.h:105
int(* crypto_api_hash_begin_session)(const struct device *dev, struct hash_ctx *ctx, enum hash_algo algo)
Setup a crypto hash session.
Definition crypto.h:112
static int cipher_block_op(struct cipher_ctx *ctx, struct cipher_pkt *pkt)
Perform single-block crypto operation (ECB cipher mode).
Definition crypto.h:306
void(* cipher_completion_cb)(struct cipher_pkt *completed, int status)
Handle completion of an asynchronous cipher request.
Definition cipher.h:347
static int cipher_begin_session(const struct device *dev, struct cipher_ctx *ctx, enum cipher_algo algo, enum cipher_mode mode, enum cipher_op optype)
Setup a crypto session.
Definition crypto.h:224
cipher_op
Cipher operation types.
Definition cipher.h:34
static int cipher_cbc_op(struct cipher_ctx *ctx, struct cipher_pkt *pkt, uint8_t *iv)
Perform Cipher Block Chaining (CBC) crypto operation.
Definition crypto.h:327
static int cipher_gcm_op(struct cipher_ctx *ctx, struct cipher_aead_pkt *pkt, uint8_t *nonce)
Perform Galois/Counter Mode (GCM) crypto operation.
Definition crypto.h:398
static int cipher_ccm_op(struct cipher_ctx *ctx, struct cipher_aead_pkt *pkt, uint8_t *nonce)
Perform Counter with CBC-MAC (CCM) mode crypto operation.
Definition crypto.h:376
cipher_algo
Cipher algorithms.
Definition cipher.h:29
static int cipher_free_session(const struct device *dev, struct cipher_ctx *ctx)
Cleanup a crypto session.
Definition crypto.h:265
static int cipher_callback_set(const struct device *dev, cipher_completion_cb cb)
Registers an async crypto op completion callback with the driver.
Definition crypto.h:285
cipher_mode
Possible cipher mode options.
Definition cipher.h:44
static int cipher_ctr_op(struct cipher_ctx *ctx, struct cipher_pkt *pkt, uint8_t *iv)
Perform Counter (CTR) mode crypto operation.
Definition crypto.h:354
@ CRYPTO_CIPHER_MODE_GCM
Galois/Counter mode.
Definition cipher.h:49
@ CRYPTO_CIPHER_MODE_ECB
Electronic Codebook mode.
Definition cipher.h:45
@ CRYPTO_CIPHER_MODE_CCM
Counter with CBC-MAC mode.
Definition cipher.h:48
@ CRYPTO_CIPHER_MODE_CTR
Counter mode.
Definition cipher.h:47
@ CRYPTO_CIPHER_MODE_CBC
Cipher Block Chaining mode.
Definition cipher.h:46
void(* hash_completion_cb)(struct hash_pkt *completed, int status)
Handle completion of an asynchronous hash request.
Definition hash.h:148
static int hash_compute(struct hash_ctx *ctx, struct hash_pkt *pkt)
Perform a cryptographic hash function.
Definition crypto.h:512
static int hash_begin_session(const struct device *dev, struct hash_ctx *ctx, enum hash_algo algo)
Setup a hash session.
Definition crypto.h:438
static int hash_callback_set(const struct device *dev, hash_completion_cb cb)
Registers an async hash completion callback with the driver.
Definition crypto.h:492
hash_algo
Hash algorithms.
Definition hash.h:25
static int hash_free_session(const struct device *dev, struct hash_ctx *ctx)
Cleanup a hash session.
Definition crypto.h:472
static int hash_update(struct hash_ctx *ctx, struct hash_pkt *pkt)
Perform a cryptographic multipart hash operation.
Definition crypto.h:531
#define CAP_SYNC_OPS
Synchronous operations are supported.
Definition crypto.h:61
#define CAP_INPLACE_OPS
In-place operations are supported.
Definition crypto.h:55
#define CAP_ASYNC_OPS
Asynchronous operations with completion notifications are supported.
Definition crypto.h:64
#define CAP_OPAQUE_KEY_HNDL
Key material is referenced through an opaque driver-specific handle.
Definition crypto.h:46
#define CAP_SEPARATE_IO_BUFS
Separate input and output buffers are supported.
Definition crypto.h:58
#define CAP_RAW_KEY
Key material is supplied as raw key bytes.
Definition crypto.h:49
static int crypto_query_hwcaps(const struct device *dev)
Query the crypto hardware capabilities.
Definition crypto.h:175
#define ENOTSUP
Unsupported value.
Definition errno.h:114
flags
Definition parser.h:97
__UINT32_TYPE__ uint32_t
Definition stdint.h:90
__UINT8_TYPE__ uint8_t
Definition stdint.h:88
Structure encoding IO parameters in AEAD (Authenticated Encryption with Associated Data) scenario lik...
Definition cipher.h:309
struct cipher_pkt * pkt
Packet containing input and output buffers.
Definition cipher.h:314
Structure encoding session parameters.
Definition cipher.h:185
const struct device * device
The device driver instance this crypto context relates to.
Definition cipher.h:213
uint16_t flags
How certain fields are to be interpreted for this session.
Definition cipher.h:254
struct cipher_ops ops
Place for driver to return function pointers to be invoked per cipher operation.
Definition cipher.h:191
block_op_t block_crypt_hndlr
Handler for ECB block operations.
Definition cipher.h:140
gcm_op_t gcm_crypt_hndlr
Handler for GCM authenticated operations.
Definition cipher.h:148
enum cipher_mode cipher_mode
Cipher mode associated with the active handler.
Definition cipher.h:135
cbc_op_t cbc_crypt_hndlr
Handler for CBC operations.
Definition cipher.h:142
ctr_op_t ctr_crypt_hndlr
Handler for CTR operations.
Definition cipher.h:144
ccm_op_t ccm_crypt_hndlr
Handler for CCM authenticated operations.
Definition cipher.h:146
Structure encoding IO parameters of one cryptographic operation like encrypt/decrypt.
Definition cipher.h:265
struct cipher_ctx * ctx
Context this packet relates to.
Definition cipher.h:300
<span class="mlabel">Driver Operations</span> Crypto driver operations
Definition crypto.h:130
crypto_api_cipher_begin_session cipher_begin_session
<span class="op-badge op-req" title="This operation MUST be implemented by the driver....
Definition crypto.h:135
crypto_api_hash_free_session hash_free_session
<span class="op-badge op-req" title="This operation MUST be implemented by the driver....
Definition crypto.h:147
crypto_api_hash_async_callback_set hash_async_callback_set
<span class="op-badge op-opt" title="This operation MAY optionally be implemented by the driver....
Definition crypto.h:150
crypto_api_cipher_free_session cipher_free_session
<span class="op-badge op-req" title="This operation MUST be implemented by the driver....
Definition crypto.h:138
crypto_api_query_hw_caps query_hw_caps
<span class="op-badge op-req" title="This operation MUST be implemented by the driver....
Definition crypto.h:132
crypto_api_hash_begin_session hash_begin_session
<span class="op-badge op-req" title="This operation MUST be implemented by the driver....
Definition crypto.h:144
crypto_api_cipher_async_callback_set cipher_async_callback_set
<span class="op-badge op-opt" title="This operation MAY optionally be implemented by the driver....
Definition crypto.h:141
Runtime device structure (in ROM) per driver instance.
Definition device.h:513
Structure encoding session parameters.
Definition hash.h:57
hash_op_t hash_hndlr
Hash operation handler selected for this session.
Definition hash.h:82
uint16_t flags
Flags describing how certain fields are interpreted for this session.
Definition hash.h:99
const struct device * device
Device driver instance this crypto context relates to.
Definition hash.h:63
Structure encoding IO parameters of a hash operation.
Definition hash.h:109
struct hash_ctx * ctx
Context this packet relates to.
Definition hash.h:135