Select one of the symbols to view example projects that use it.
 
Outline
#define AES_SIV_H
aes_siv_encrypt(const u8 *, size_t, const u8 *, size_t, size_t, const u8 **, const size_t *, u8 *);
aes_siv_decrypt(const u8 *, size_t, const u8 *, size_t, size_t, const u8 **, const size_t *, u8 *);
Files
loading (4/5)...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/wpa_supplicant/src/crypto/aes_siv.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * AES SIV (RFC 5297) * Copyright (c) 2013 Cozybit, Inc. * * This software may be distributed under the terms of the BSD license. * See README for more details. *//* ... */ #ifndef AES_SIV_H #define AES_SIV_H int aes_siv_encrypt(const u8 *key, size_t key_len, const u8 *pw, size_t pwlen, size_t num_elem, const u8 *addr[], const size_t *len, u8 *out); int aes_siv_decrypt(const u8 *key, size_t key_len, const u8 *iv_crypt, size_t iv_c_len, size_t num_elem, const u8 *addr[], const size_t *len, u8 *out); /* ... */ #endif /* AES_SIV_H */
Details