pq_compat.h

Go to the documentation of this file.
00001 /* crypto/pqueue/pqueue_compat.h */
00002 /* 
00003  * DTLS implementation written by Nagendra Modadugu
00004  * ([email protected]) 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  *    [email protected].
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  * ([email protected]).  This product includes software written by Tim
00056  * Hudson ([email protected]).
00057  *
00058  */
00059 
00060 #if (defined(__SYMBIAN32__) && !defined(SYMBIAN))
00061 #define SYMBIAN
00062 #endif
00063 
00064 #include "opensslconf.h"
00065 #include <openssl/bn.h>
00066 
00067 /* 
00068  * The purpose of this header file is for supporting 64-bit integer
00069  * manipulation on 32-bit (and lower) machines.  Currently the only
00070  * such environment is VMS, Utrix and those with smaller default integer
00071  * sizes than 32 bits.  For all such environment, we fall back to using
00072  * BIGNUM.  We may need to fine tune the conditions for systems that
00073  * are incorrectly configured.
00074  *
00075  * The only clients of this code are (1) pqueue for priority, and
00076  * (2) DTLS, for sequence number manipulation.
00077  */
00078 
00079 #if (defined(THIRTY_TWO_BIT) && !defined(BN_LLONG)) || defined(SIXTEEN_BIT) || defined(EIGHT_BIT)
00080 
00081 #define PQ_64BIT_IS_INTEGER 0
00082 #define PQ_64BIT_IS_BIGNUM 1
00083 
00084 #define PQ_64BIT     BIGNUM
00085 #define PQ_64BIT_CTX BN_CTX
00086 
00087 #define pq_64bit_init(x)           BN_init(x)
00088 #define pq_64bit_free(x)           BN_free(x)
00089 
00090 #define pq_64bit_ctx_new(ctx)      BN_CTX_new()
00091 #define pq_64bit_ctx_free(x)       BN_CTX_free(x)
00092 
00093 #define pq_64bit_assign(x, y)      BN_copy(x, y)
00094 #define pq_64bit_assign_word(x, y) BN_set_word(x, y)
00095 #define pq_64bit_gt(x, y)          BN_ucmp(x, y) >= 1 ? 1 : 0
00096 #define pq_64bit_eq(x, y)          BN_ucmp(x, y) == 0 ? 1 : 0
00097 #define pq_64bit_add_word(x, w)    BN_add_word(x, w)
00098 #define pq_64bit_sub(r, x, y)      BN_sub(r, x, y)
00099 #define pq_64bit_sub_word(x, w)    BN_sub_word(x, w)
00100 #define pq_64bit_mod(r, x, n, ctx) BN_mod(r, x, n, ctx)
00101 
00102 #define pq_64bit_bin2num(bn, bytes, len)   BN_bin2bn(bytes, len, bn)
00103 #define pq_64bit_num2bin(bn, bytes)        BN_bn2bin(bn, bytes)
00104 #define pq_64bit_get_word(x)               BN_get_word(x)
00105 #define pq_64bit_is_bit_set(x, offset)     BN_is_bit_set(x, offset)
00106 #define pq_64bit_lshift(r, x, shift)       BN_lshift(r, x, shift)
00107 #define pq_64bit_set_bit(x, num)           BN_set_bit(x, num)
00108 #define pq_64bit_get_length(x)             BN_num_bits((x))
00109 
00110 #else
00111 
00112 #define PQ_64BIT_IS_INTEGER 1
00113 #define PQ_64BIT_IS_BIGNUM 0
00114 
00115 #if defined(SIXTY_FOUR_BIT)
00116 #define PQ_64BIT BN_ULONG
00117 #define PQ_64BIT_PRINT "%lld"
00118 #elif defined(SIXTY_FOUR_BIT_LONG)
00119 #define PQ_64BIT BN_ULONG
00120 #define PQ_64BIT_PRINT "%ld"
00121 #elif defined(THIRTY_TWO_BIT)
00122 #define PQ_64BIT BN_ULLONG
00123 #define PQ_64BIT_PRINT "%lld"
00124 #endif
00125 
00126 #define PQ_64BIT_CTX      void
00127 
00128 #define pq_64bit_init(x)
00129 #define pq_64bit_free(x)
00130 #define pq_64bit_ctx_new(ctx)        (ctx)
00131 #define pq_64bit_ctx_free(x)
00132 
00133 #define pq_64bit_assign(x, y)        (*(x) = *(y))
00134 #define pq_64bit_assign_word(x, y)   (*(x) = y)
00135 #define pq_64bit_gt(x, y)                (*(x) > *(y))
00136 #define pq_64bit_eq(x, y)            (*(x) == *(y))
00137 #define pq_64bit_add_word(x, w)      (*(x) = (*(x) + (w)))
00138 #define pq_64bit_sub(r, x, y)        (*(r) = (*(x) - *(y)))
00139 #define pq_64bit_sub_word(x, w)      (*(x) = (*(x) - (w)))
00140 #define pq_64bit_mod(r, x, n, ctx)
00141 
00142 #define pq_64bit_bin2num(num, bytes, len) bytes_to_long_long(bytes, num)
00143 #define pq_64bit_num2bin(num, bytes)      long_long_to_bytes(num, bytes)
00144 #define pq_64bit_get_word(x)              *(x)
00145 #define pq_64bit_lshift(r, x, shift)      (*(r) = (*(x) << (shift)))
00146 #define pq_64bit_set_bit(x, num)          do { \
00147                                               PQ_64BIT mask = 1; \
00148                                               mask = mask << (num); \
00149                                               *(x) |= mask; \
00150                                           } while(0)
00151 #endif /* OPENSSL_SYS_VMS */

Copyright © Nokia Corporation 2001-2008
Back to top