netwerk/srtp/src/crypto/include/cryptoalg.h

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

michael@0 1 /*
michael@0 2 * cryptoalg.h
michael@0 3 *
michael@0 4 * API for authenticated encryption crypto algorithms
michael@0 5 *
michael@0 6 * David A. McGrew
michael@0 7 * Cisco Systems, Inc.
michael@0 8 */
michael@0 9 /*
michael@0 10 *
michael@0 11 * Copyright (c) 2001-2006 Cisco Systems, Inc.
michael@0 12 * All rights reserved.
michael@0 13 *
michael@0 14 * Redistribution and use in source and binary forms, with or without
michael@0 15 * modification, are permitted provided that the following conditions
michael@0 16 * are met:
michael@0 17 *
michael@0 18 * Redistributions of source code must retain the above copyright
michael@0 19 * notice, this list of conditions and the following disclaimer.
michael@0 20 *
michael@0 21 * Redistributions in binary form must reproduce the above
michael@0 22 * copyright notice, this list of conditions and the following
michael@0 23 * disclaimer in the documentation and/or other materials provided
michael@0 24 * with the distribution.
michael@0 25 *
michael@0 26 * Neither the name of the Cisco Systems, Inc. nor the names of its
michael@0 27 * contributors may be used to endorse or promote products derived
michael@0 28 * from this software without specific prior written permission.
michael@0 29 *
michael@0 30 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
michael@0 31 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
michael@0 32 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
michael@0 33 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
michael@0 34 * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
michael@0 35 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
michael@0 36 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
michael@0 37 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
michael@0 38 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
michael@0 39 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
michael@0 40 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
michael@0 41 * OF THE POSSIBILITY OF SUCH DAMAGE.
michael@0 42 *
michael@0 43 */
michael@0 44
michael@0 45 #ifndef CRYPTOALG_H
michael@0 46 #define CRYPTOALG_H
michael@0 47
michael@0 48 #include "err.h"
michael@0 49
michael@0 50 /**
michael@0 51 * @defgroup Crypto Cryptography
michael@0 52 *
michael@0 53 * Zed uses a simple interface to a cryptographic transform.
michael@0 54 *
michael@0 55 * @{
michael@0 56 */
michael@0 57
michael@0 58 /**
michael@0 59 * @brief applies a crypto algorithm
michael@0 60 *
michael@0 61 * The function pointer cryptoalg_func_t points to a function that
michael@0 62 * implements a crypto transform, and provides a uniform API for
michael@0 63 * accessing crypto mechanisms.
michael@0 64 *
michael@0 65 * @param key location of secret key
michael@0 66 *
michael@0 67 * @param clear data to be authenticated but not encrypted
michael@0 68 *
michael@0 69 * @param clear_len length of data to be authenticated but not encrypted
michael@0 70 *
michael@0 71 * @param iv location to write the Initialization Vector (IV)
michael@0 72 *
michael@0 73 * @param protect location of the data to be encrypted and
michael@0 74 * authenticated (before the function call), and the ciphertext
michael@0 75 * and authentication tag (after the call)
michael@0 76 *
michael@0 77 * @param protected_len location of the length of the data to be
michael@0 78 * encrypted and authenticated (before the function call), and the
michael@0 79 * length of the ciphertext (after the call)
michael@0 80 *
michael@0 81 */
michael@0 82
michael@0 83 typedef err_status_t (*cryptoalg_func_t)
michael@0 84 (void *key,
michael@0 85 const void *clear,
michael@0 86 unsigned clear_len,
michael@0 87 void *iv,
michael@0 88 void *protect,
michael@0 89 unsigned *protected_len);
michael@0 90
michael@0 91 typedef
michael@0 92 err_status_t (*cryptoalg_inv_t)
michael@0 93 (void *key, /* location of secret key */
michael@0 94 const void *clear, /* data to be authenticated only */
michael@0 95 unsigned clear_len, /* length of data to be authenticated only */
michael@0 96 void *iv, /* location of iv */
michael@0 97 void *opaque, /* data to be decrypted and authenticated */
michael@0 98 unsigned *opaque_len /* location of the length of data to be
michael@0 99 * decrypted and authd (before and after)
michael@0 100 */
michael@0 101 );
michael@0 102
michael@0 103 typedef struct cryptoalg_ctx_t {
michael@0 104 cryptoalg_func_t enc;
michael@0 105 cryptoalg_inv_t dec;
michael@0 106 unsigned key_len;
michael@0 107 unsigned iv_len;
michael@0 108 unsigned auth_tag_len;
michael@0 109 unsigned max_expansion;
michael@0 110 } cryptoalg_ctx_t;
michael@0 111
michael@0 112 typedef cryptoalg_ctx_t *cryptoalg_t;
michael@0 113
michael@0 114 #define cryptoalg_get_key_len(cryptoalg) ((cryptoalg)->key_len)
michael@0 115
michael@0 116 #define cryptoalg_get_iv_len(cryptoalg) ((cryptoalg)->iv_len)
michael@0 117
michael@0 118 #define cryptoalg_get_auth_tag_len(cryptoalg) ((cryptoalg)->auth_tag_len)
michael@0 119
michael@0 120 int
michael@0 121 cryptoalg_get_id(cryptoalg_t c);
michael@0 122
michael@0 123 cryptoalg_t
michael@0 124 cryptoalg_find_by_id(int id);
michael@0 125
michael@0 126
michael@0 127 /**
michael@0 128 * @}
michael@0 129 */
michael@0 130
michael@0 131 #endif /* CRYPTOALG_H */
michael@0 132
michael@0 133

mercurial