nrfxlib API 2.7.99
Loading...
Searching...
No Matches
ocrypto_aes_key.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2016 - 2024 Nordic Semiconductor ASA
3 * Copyright (c) since 2013 Oberon microsystems AG
4 *
5 * SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
6 */
7
8
25#ifndef OCRYPTO_AES_KEY_H
26#define OCRYPTO_AES_KEY_H
27
28#include <stddef.h>
29#include <stdint.h>
30
31
32#ifdef __cplusplus
33extern "C" {
34#endif
35
36
40#define ocrypto_aes128_KEY_BYTES ((size_t) 16)
41
45#define ocrypto_aes192_KEY_BYTES ((size_t) 24)
46
50#define ocrypto_aes256_KEY_BYTES ((size_t) 32)
51
52#ifdef __cplusplus
53}
54#endif
55
56#endif
57