Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5)

Side by Side Diff: crypto/include/aes_gcm_ossl.h

Issue 2344973002: Update libsrtp to version 2.0 (Closed)
Patch Set: Add '.' back to include_dirs Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « crypto/include/aes.h ('k') | crypto/include/aes_icm.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * aes_gcm_ossl.h 2 * aes_gcm_ossl.h
3 * 3 *
4 * Header for AES Galois Counter Mode. 4 * Header for AES Galois Counter Mode.
5 * 5 *
6 * John A. Foley 6 * John A. Foley
7 * Cisco Systems, Inc. 7 * Cisco Systems, Inc.
8 * 8 *
9 */ 9 */
10 /* 10 /*
11 *» 11 *
12 * Copyright (c) 2013, Cisco Systems, Inc. 12 * Copyright (c) 2013, Cisco Systems, Inc.
13 * All rights reserved. 13 * All rights reserved.
14 * 14 *
15 * Redistribution and use in source and binary forms, with or without 15 * Redistribution and use in source and binary forms, with or without
16 * modification, are permitted provided that the following conditions 16 * modification, are permitted provided that the following conditions
17 * are met: 17 * are met:
18 * 18 *
19 * Redistributions of source code must retain the above copyright 19 * Redistributions of source code must retain the above copyright
20 * notice, this list of conditions and the following disclaimer. 20 * notice, this list of conditions and the following disclaimer.
21 * 21 *
22 * Redistributions in binary form must reproduce the above 22 * Redistributions in binary form must reproduce the above
23 * copyright notice, this list of conditions and the following 23 * copyright notice, this list of conditions and the following
24 * disclaimer in the documentation and/or other materials provided 24 * disclaimer in the documentation and/or other materials provided
25 * with the distribution. 25 * with the distribution.
26 * 26 *
27 * Neither the name of the Cisco Systems, Inc. nor the names of its 27 * Neither the name of the Cisco Systems, Inc. nor the names of its
28 * contributors may be used to endorse or promote products derived 28 * contributors may be used to endorse or promote products derived
29 * from this software without specific prior written permission. 29 * from this software without specific prior written permission.
30 * 30 *
31 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 31 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 32 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 33 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
34 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 34 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
35 * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, 35 * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
36 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 36 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
37 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 37 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
38 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 38 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
39 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 39 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
40 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 40 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
41 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 41 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
42 * OF THE POSSIBILITY OF SUCH DAMAGE. 42 * OF THE POSSIBILITY OF SUCH DAMAGE.
43 * 43 *
44 */ 44 */
45 45
46 #ifndef AES_GCM_OSSL_H 46 #ifndef AES_GCM_OSSL_H
47 #define AES_GCM_OSSL_H 47 #define AES_GCM_OSSL_H
48 48
49 #include "cipher.h" 49 #include "cipher.h"
50 #include "srtp.h" 50 #include "srtp.h"
51 #include "datatypes.h"
51 #include <openssl/evp.h> 52 #include <openssl/evp.h>
52 #include <openssl/aes.h> 53 #include <openssl/aes.h>
53 54
54 typedef struct { 55 typedef struct {
55 v256_t key; 56 int key_size;
56 int key_size; 57 int tag_len;
57 int tag_len; 58 EVP_CIPHER_CTX* ctx;
58 EVP_CIPHER_CTX ctx; 59 srtp_cipher_direction_t dir;
59 cipher_direction_t dir; 60 } srtp_aes_gcm_ctx_t;
60 } aes_gcm_ctx_t;
61 61
62 #endif /* AES_GCM_OSSL_H */ 62 #endif /* AES_GCM_OSSL_H */
63 63
OLDNEW
« no previous file with comments | « crypto/include/aes.h ('k') | crypto/include/aes_icm.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698