- 28 1月, 2004 3 次提交
-
-
由 Richard Levitte 提交于
-
由 Andy Polyakov 提交于
_POSIX_C_SOURCE needed in first place.
-
由 Andy Polyakov 提交于
-
- 27 1月, 2004 2 次提交
-
-
由 Richard Levitte 提交于
Windows).
-
由 Richard Levitte 提交于
let's check for those macros, and if they aren't defined, let's assume there aren't Unixly devices on this platform.
-
- 25 1月, 2004 3 次提交
-
-
由 Andy Polyakov 提交于
automatically to accomodate the value, some compilers fail to do so. Most notably 0x0123456789ABCDEF should come out as long long in 32-bit context, but HP compiler truncates it to 32-bit value. Which in turn breaks GF(2^m) arithmetics in hpux-parisc2-cc build. Therefore this fix...
-
由 Andy Polyakov 提交于
-
由 Andy Polyakov 提交于
-
- 24 1月, 2004 1 次提交
-
-
由 Richard Levitte 提交于
-
- 23 1月, 2004 1 次提交
-
-
由 Richard Levitte 提交于
-
- 21 1月, 2004 2 次提交
-
-
由 Dr. Stephen Henson 提交于
-
由 Andy Polyakov 提交于
-
- 11 1月, 2004 1 次提交
-
-
由 Richard Levitte 提交于
VMS. The C RTL can handle it well if the "directory" is a logical name with no colon, therefore ending being 'logname/file'. However, if the given logical names actually has a colon, or if you use a full VMS-syntax directory, you end up with 'logname:/file' or 'dev:[dir1.dir2]/file', and that isn't handled in any good way. So, on VMS, we need to check if the directory string ends with a separator (one of ':', ']' or '>' (< and > can be used instead [ and ])), and handle that by not inserting anything between the directory spec and the file name. In all other cases, it's assumed the directory spec is a logical name, so we need to place a colon between it and the file. Notified by Kevin Greaney <kevin.greaney@hp.com>.
-
- 08 1月, 2004 2 次提交
-
-
由 Lutz Jänicke 提交于
PR: #748 Submitted by: Kirill Kochetkov <kochet@ixbt.com>
-
由 Lutz Jänicke 提交于
PR: #570 Submitted by: Martin Witzel <MWITZEL@de.ibm.com>
-
- 05 1月, 2004 3 次提交
-
-
由 Lutz Jänicke 提交于
Submitted by: "Martin Witzel" <MWITZEL@de.ibm.com> PR: #570
-
由 Lutz Jänicke 提交于
Submitted by: Gertjan van Oosten <gertjan@West.NL> PR: #804
-
由 Lutz Jänicke 提交于
ANSI C 89. Undo change to maintain compatibility.
-
- 28 12月, 2003 4 次提交
-
-
由 Richard Levitte 提交于
This is part of a large change submitted by Markus Friedl <markus@openbsd.org>
-
由 Richard Levitte 提交于
Check if IDEA is being built or not. This is part of a large change submitted by Markus Friedl <markus@openbsd.org>
-
由 Richard Levitte 提交于
This is part of a large change submitted by Markus Friedl <markus@openbsd.org>
-
由 Richard Levitte 提交于
specially if it is. Add a few OpenBSD-specific cases. This is part of a large change submitted by Markus Friedl <markus@openbsd.org>
-
- 27 12月, 2003 6 次提交
-
-
由 Richard Levitte 提交于
This is part of a large change submitted by Markus Friedl <markus@openbsd.org>
-
由 Richard Levitte 提交于
This is part of a large change submitted by Markus Friedl <markus@openbsd.org>
-
由 Richard Levitte 提交于
This is part of a large change submitted by Markus Friedl <markus@openbsd.org>
-
由 Richard Levitte 提交于
-
由 Richard Levitte 提交于
Use BUF_strlcat() instead of strcat(). Use BIO_snprintf() instead of sprintf(). In some cases, keep better track of buffer lengths. This is part of a large change submitted by Markus Friedl <markus@openbsd.org>
-
由 Richard Levitte 提交于
This is part of a large change submitted by Markus Friedl <markus@openbsd.org>
-
- 21 12月, 2003 1 次提交
-
-
由 Dr. Stephen Henson 提交于
-
- 12 12月, 2003 1 次提交
-
-
由 Richard Levitte 提交于
not the size of the integer used to index in said buffer. PR: 794 Notified by: Rhett Garber <rhett_garber@hp.com>
-
- 10 12月, 2003 2 次提交
-
-
由 Richard Levitte 提交于
Correct the typo PUKEY...
-
由 Richard Levitte 提交于
Correct the typo PUKEY...
-
- 06 12月, 2003 3 次提交
-
-
由 Ulf Möller 提交于
Submitted by: Nils Larsch
-
由 Ulf Möller 提交于
Submitted by: Nils Larsch
-
由 Ulf Möller 提交于
Submitted by: Nils Larsch
-
- 04 12月, 2003 1 次提交
-
-
由 Lutz Jänicke 提交于
Submitted by: Witold Filipczyk <witekfl@poczta.gazeta.pl> PR: #513
-
- 03 12月, 2003 1 次提交
-
-
由 Geoff Thorpe 提交于
- Add missing bn_check_top() calls and relocate some others - Use BN_is_zero() where appropriate - Remove assert()s that bn_check_top() is already covering - Simplify the code in places (esp. bn_expand2()) - Only keep ambiguous zero handling if BN_STRICT isn't defined - Remove some white-space and make some other aesthetic tweaks
-
- 02 12月, 2003 3 次提交
-
-
由 Geoff Thorpe 提交于
the same thing. Also, I have some stuff on the back-burner related to some BN_CTX notes from Peter Gutmann about his cryptlib hacks to the bignum code. The BN_CTX comments are there to remind me of some relevant points in the code.
-
由 Geoff Thorpe 提交于
once in the source (where it is set for the benefit of no other code whatsoever). I've deprecated the declaration in the header and likewise made the use of the flag conditional in bn_lib.c. Note, this change also NULLs the 'd' pointer in a BIGNUM when it is reset but not deallocated.
-
由 Geoff Thorpe 提交于
-