summaryrefslogtreecommitdiffstats
path: root/crypto/pqueue/pq_compat.h
AgeCommit message (Collapse)Author
2007-09-16Remove pq_compat.h.Andy Polyakov
2005-06-29Actually, the 64bit format specifier differs between SIXTY_FOUR_BIT andRichard Levitte
SIXTY_FOUR_BIT_LONG
2005-06-29Brought forward from 0.9.8 - 64 bit warning fixes and fussy compiler fixes.Ben Laurie
2005-06-07"Liberate" dtls from BN dependency. Fix bug in replay/update.Andy Polyakov
2005-06-06Further change pq_compat.h to generate the flag macros PQ_64BIT_IS_INTEGERRichard Levitte
and PQ_64BIT_IS_BIGNUM with the values 0 (for false) and 1 (for true), depending on which is true. Use those flags everywhere else to provide the correct implementation for handling certain operations in q PQ_64BIT.
2005-06-05Change pq_compat.h to trust the macros defined by bn.h a bit more, and therebyRichard Levitte
provide better generic support for environments that do not have 64-bit integers. Among others, this should solve PR 1086
2005-05-30pqueue and dtls uses 64-bit values. Unfortunately, OpenSSL doesn'tRichard Levitte
have a uniform representation for those over all architectures, so a little bit of hackery is needed. Contributed by nagendra modadugu <nagendra@cs.stanford.edu>