00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
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
00069
00070
00071
00072
00073
00074
00075
00076
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