nrfxlib API 3.3.99
Loading...
Searching...
No Matches
ocrypto_aes_key.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2016 - 2025 Nordic Semiconductor ASA
3 * Copyright (c) since 2013 Oberon microsystems AG
4 *
5 * SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
6 */
7
8
28#ifndef OCRYPTO_AES_KEY_H
29#define OCRYPTO_AES_KEY_H
30
31#include <stddef.h>
32#include <stdint.h>
33
34
35#ifdef __cplusplus
36extern "C" {
37#endif
38
39
43#define ocrypto_aes128_KEY_BYTES ((size_t) 16)
44
48#define ocrypto_aes192_KEY_BYTES ((size_t) 24)
49
53#define ocrypto_aes256_KEY_BYTES ((size_t) 32)
54
55#ifdef __cplusplus
56}
57#endif
58
59#endif
60