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 #include "opensslconf.h"
00061 #include <openssl/bn.h>
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073
00074
00075 #if (defined(THIRTY_TWO_BIT) && !defined(BN_LLONG)) || defined(SIXTEEN_BIT) || defined(EIGHT_BIT)
00076
00077 #define PQ_64BIT_IS_INTEGER 0
00078 #define PQ_64BIT_IS_BIGNUM 1
00079
00080 #define PQ_64BIT BIGNUM
00081 #define PQ_64BIT_CTX BN_CTX
00082
00083 #define pq_64bit_init(x) BN_init(x)
00084 #define pq_64bit_free(x) BN_free(x)
00085
00086 #define pq_64bit_ctx_new(ctx) BN_CTX_new()
00087 #define pq_64bit_ctx_free(x) BN_CTX_free(x)
00088
00089 #define pq_64bit_assign(x, y) BN_copy(x, y)
00090 #define pq_64bit_assign_word(x, y) BN_set_word(x, y)
00091 #define pq_64bit_gt(x, y) BN_ucmp(x, y) >= 1 ? 1 : 0
00092 #define pq_64bit_eq(x, y) BN_ucmp(x, y) == 0 ? 1 : 0
00093 #define pq_64bit_add_word(x, w) BN_add_word(x, w)
00094 #define pq_64bit_sub(r, x, y) BN_sub(r, x, y)
00095 #define pq_64bit_sub_word(x, w) BN_sub_word(x, w)
00096 #define pq_64bit_mod(r, x, n, ctx) BN_mod(r, x, n, ctx)
00097
00098 #define pq_64bit_bin2num(bn, bytes, len) BN_bin2bn(bytes, len, bn)
00099 #define pq_64bit_num2bin(bn, bytes) BN_bn2bin(bn, bytes)
00100 #define pq_64bit_get_word(x) BN_get_word(x)
00101 #define pq_64bit_is_bit_set(x, offset) BN_is_bit_set(x, offset)
00102 #define pq_64bit_lshift(r, x, shift) BN_lshift(r, x, shift)
00103 #define pq_64bit_set_bit(x, num) BN_set_bit(x, num)
00104 #define pq_64bit_get_length(x) BN_num_bits((x))
00105
00106 #else
00107
00108 #define PQ_64BIT_IS_INTEGER 1
00109 #define PQ_64BIT_IS_BIGNUM 0
00110
00111 #if defined(SIXTY_FOUR_BIT)
00112 #define PQ_64BIT BN_ULONG
00113 #define PQ_64BIT_PRINT "%lld"
00114 #elif defined(SIXTY_FOUR_BIT_LONG)
00115 #define PQ_64BIT BN_ULONG
00116 #define PQ_64BIT_PRINT "%ld"
00117 #elif defined(THIRTY_TWO_BIT)
00118 #define PQ_64BIT BN_ULLONG
00119 #define PQ_64BIT_PRINT "%lld"
00120 #endif
00121
00122 #define PQ_64BIT_CTX void
00123
00124 #define pq_64bit_init(x)
00125 #define pq_64bit_free(x)
00126 #define pq_64bit_ctx_new(ctx) (ctx)
00127 #define pq_64bit_ctx_free(x)
00128
00129 #define pq_64bit_assign(x, y) (*(x) = *(y))
00130 #define pq_64bit_assign_word(x, y) (*(x) = y)
00131 #define pq_64bit_gt(x, y) (*(x) > *(y))
00132 #define pq_64bit_eq(x, y) (*(x) == *(y))
00133 #define pq_64bit_add_word(x, w) (*(x) = (*(x) + (w)))
00134 #define pq_64bit_sub(r, x, y) (*(r) = (*(x) - *(y)))
00135 #define pq_64bit_sub_word(x, w) (*(x) = (*(x) - (w)))
00136 #define pq_64bit_mod(r, x, n, ctx)
00137
00138 #define pq_64bit_bin2num(num, bytes, len) bytes_to_long_long(bytes, num)
00139 #define pq_64bit_num2bin(num, bytes) long_long_to_bytes(num, bytes)
00140 #define pq_64bit_get_word(x) *(x)
00141 #define pq_64bit_lshift(r, x, shift) (*(r) = (*(x) << (shift)))
00142 #define pq_64bit_set_bit(x, num) do { \
00143 PQ_64BIT mask = 1; \
00144 mask = mask << (num); \
00145 *(x) |= mask; \
00146 } while(0)
00147 #endif