Eneboo - Documentación para desarrolladores
|
00001 /* crypto/pqueue/pqueue_compat.h */ 00002 /* 00003 * DTLS implementation written by Nagendra Modadugu 00004 * (nagendra@cs.stanford.edu) for the OpenSSL project 2005. 00005 */ 00006 /* ==================================================================== 00007 * Copyright (c) 1999-2005 The OpenSSL Project. All rights reserved. 00008 * 00009 * Redistribution and use in source and binary forms, with or without 00010 * modification, are permitted provided that the following conditions 00011 * are met: 00012 * 00013 * 1. Redistributions of source code must retain the above copyright 00014 * notice, this list of conditions and the following disclaimer. 00015 * 00016 * 2. Redistributions in binary form must reproduce the above copyright 00017 * notice, this list of conditions and the following disclaimer in 00018 * the documentation and/or other materials provided with the 00019 * distribution. 00020 * 00021 * 3. All advertising materials mentioning features or use of this 00022 * software must display the following acknowledgment: 00023 * "This product includes software developed by the OpenSSL Project 00024 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" 00025 * 00026 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to 00027 * endorse or promote products derived from this software without 00028 * prior written permission. For written permission, please contact 00029 * openssl-core@OpenSSL.org. 00030 * 00031 * 5. Products derived from this software may not be called "OpenSSL" 00032 * nor may "OpenSSL" appear in their names without prior written 00033 * permission of the OpenSSL Project. 00034 * 00035 * 6. Redistributions of any form whatsoever must retain the following 00036 * acknowledgment: 00037 * "This product includes software developed by the OpenSSL Project 00038 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" 00039 * 00040 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY 00041 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 00042 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 00043 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR 00044 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 00045 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 00046 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 00047 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 00048 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, 00049 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 00050 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 00051 * OF THE POSSIBILITY OF SUCH DAMAGE. 00052 * ==================================================================== 00053 * 00054 * This product includes cryptographic software written by Eric Young 00055 * (eay@cryptsoft.com). This product includes software written by Tim 00056 * Hudson (tjh@cryptsoft.com). 00057 * 00058 */ 00059 00060 #ifndef HEADER_PQ_COMPAT_H 00061 #define HEADER_PQ_COMPAT_H 00062 00063 #include <openssl/opensslconf.h> 00064 #include <openssl/bn.h> 00065 00066 /* 00067 * The purpose of this header file is for supporting 64-bit integer 00068 * manipulation on 32-bit (and lower) machines. Currently the only 00069 * such environment is VMS, Utrix and those with smaller default integer 00070 * sizes than 32 bits. For all such environment, we fall back to using 00071 * BIGNUM. We may need to fine tune the conditions for systems that 00072 * are incorrectly configured. 00073 * 00074 * The only clients of this code are (1) pqueue for priority, and 00075 * (2) DTLS, for sequence number manipulation. 00076 */ 00077 00078 #if (defined(THIRTY_TWO_BIT) && !defined(BN_LLONG)) || defined(SIXTEEN_BIT) || defined(EIGHT_BIT) 00079 00080 #define PQ_64BIT_IS_INTEGER 0 00081 #define PQ_64BIT_IS_BIGNUM 1 00082 00083 #define PQ_64BIT BIGNUM 00084 #define PQ_64BIT_CTX BN_CTX 00085 00086 #define pq_64bit_init(x) BN_init(x) 00087 #define pq_64bit_free(x) BN_free(x) 00088 00089 #define pq_64bit_ctx_new(ctx) BN_CTX_new() 00090 #define pq_64bit_ctx_free(x) BN_CTX_free(x) 00091 00092 #define pq_64bit_assign(x, y) BN_copy(x, y) 00093 #define pq_64bit_assign_word(x, y) BN_set_word(x, y) 00094 #define pq_64bit_gt(x, y) BN_ucmp(x, y) >= 1 ? 1 : 0 00095 #define pq_64bit_eq(x, y) BN_ucmp(x, y) == 0 ? 1 : 0 00096 #define pq_64bit_add_word(x, w) BN_add_word(x, w) 00097 #define pq_64bit_sub(r, x, y) BN_sub(r, x, y) 00098 #define pq_64bit_sub_word(x, w) BN_sub_word(x, w) 00099 #define pq_64bit_mod(r, x, n, ctx) BN_mod(r, x, n, ctx) 00100 00101 #define pq_64bit_bin2num(bn, bytes, len) BN_bin2bn(bytes, len, bn) 00102 #define pq_64bit_num2bin(bn, bytes) BN_bn2bin(bn, bytes) 00103 #define pq_64bit_get_word(x) BN_get_word(x) 00104 #define pq_64bit_is_bit_set(x, offset) BN_is_bit_set(x, offset) 00105 #define pq_64bit_lshift(r, x, shift) BN_lshift(r, x, shift) 00106 #define pq_64bit_set_bit(x, num) BN_set_bit(x, num) 00107 #define pq_64bit_get_length(x) BN_num_bits((x)) 00108 00109 #else 00110 00111 #define PQ_64BIT_IS_INTEGER 1 00112 #define PQ_64BIT_IS_BIGNUM 0 00113 00114 #if defined(SIXTY_FOUR_BIT) 00115 #define PQ_64BIT BN_ULONG 00116 #define PQ_64BIT_PRINT "%lld" 00117 #elif defined(SIXTY_FOUR_BIT_LONG) 00118 #define PQ_64BIT BN_ULONG 00119 #define PQ_64BIT_PRINT "%ld" 00120 #elif defined(THIRTY_TWO_BIT) 00121 #define PQ_64BIT BN_ULLONG 00122 #define PQ_64BIT_PRINT "%lld" 00123 #endif 00124 00125 #define PQ_64BIT_CTX void 00126 00127 #define pq_64bit_init(x) 00128 #define pq_64bit_free(x) 00129 #define pq_64bit_ctx_new(ctx) (ctx) 00130 #define pq_64bit_ctx_free(x) 00131 00132 #define pq_64bit_assign(x, y) (*(x) = *(y)) 00133 #define pq_64bit_assign_word(x, y) (*(x) = y) 00134 #define pq_64bit_gt(x, y) (*(x) > *(y)) 00135 #define pq_64bit_eq(x, y) (*(x) == *(y)) 00136 #define pq_64bit_add_word(x, w) (*(x) = (*(x) + (w))) 00137 #define pq_64bit_sub(r, x, y) (*(r) = (*(x) - *(y))) 00138 #define pq_64bit_sub_word(x, w) (*(x) = (*(x) - (w))) 00139 #define pq_64bit_mod(r, x, n, ctx) 00140 00141 #define pq_64bit_bin2num(num, bytes, len) bytes_to_long_long(bytes, num) 00142 #define pq_64bit_num2bin(num, bytes) long_long_to_bytes(num, bytes) 00143 #define pq_64bit_get_word(x) *(x) 00144 #define pq_64bit_lshift(r, x, shift) (*(r) = (*(x) << (shift))) 00145 #define pq_64bit_set_bit(x, num) do { \ 00146 PQ_64BIT mask = 1; \ 00147 mask = mask << (num); \ 00148 *(x) |= mask; \ 00149 } while(0) 00150 #endif /* OPENSSL_SYS_VMS */ 00151 00152 #endif