| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
| |
The only support for SSLv2 left is receiving a SSLv2 compatible client hello.
Reviewed-by: Richard Levitte <levitte@openssl.org>
|
|
|
|
|
|
| |
Submitted by: Arpadffy Zoltan <Zoltan.Arpadffy@scientificgames.se>
VMS fixes: disable SCTP by default.
|
|
|
|
|
| |
EC_NISTP_64_GCC_128 by default, as GCC isn't currently supported on
VMS. Synchronise with Unix.
|
|
|
|
| |
Submitted by Steven M. Schweda <sms@antinode.info>
|
|
|
|
|
|
|
|
| |
different options:
"64" The build system will choose /POINTER_SIZE=64=ARGV if
the compiler supports it, otherwise /POINTER_SIZE=64.
"64=" The build system will force /POINTER_SIZE=64.
"64=ARGV" The build system will force /POINTER_SIZE=64=ARGV.
|
|
|
|
| |
submitted by Steven M. Schweda <sms@antinode.info>
|
|
|
|
|
|
| |
builds on VMS.
PR: 2393
|
|
|
|
| |
the branches OpenSSL-1_0_0-stable and OpenSSL-1_0_1-stable.
|
|
|
|
|
| |
Make sure to remove any [.CRYTO]BUILDINF.H so it doesn't get used instead of
[.''ARCH'.CRYPTO]BUILDINF.H
|
|
|
|
| |
build on VMS again.
|
| |
|
| |
|
|
|
|
|
| |
directory, place it in the same tree as the other architecture
specific things.
|
| |
|
|
|
|
|
| |
Thank you\!
(note: not tested for now, a few nightly builds should give indications though)
|
| |
|
| |
|
| |
|
|
|
|
| |
was gone...
|
| |
|
| |
|
|
|
|
|
|
| |
PR: 1503
Submitted by: KISA
Reviewed by: Bodo Moeller
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
SIXTY_FOUR_BIT could cause havoc, so don't (it's lucky bn.h undefines
BN_LLONG when SIXTY_FOUR_BIT is defined).
|
|
|
|
|
| |
knows how to make use of it. So let's stop pretending the Alpha
doesn't know long long...
|
| |
|
| |
|
|
|
|
| |
a year.
|
|
|
|
|
| |
Currently, we simply assume that they shall always be built as
shareable images.
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
| |
crypto/rijndael. Additionally, I applied the AES integration patch
from Stephen Sprunk <stephen@sprunk.org> and fiddled it to work
properly with the normal EVP constructs (and incidently work the same
way as all other symmetric cipher implementations).
This results in an API that looks a lot like the rest of the OpenSSL
cipher suite.
|
|
|
|
| |
than one period and mixed size characters in file names
|
|
|
|
|
|
|
|
|
|
|
|
| |
libdes (which is still used out there) or other des implementations,
the OpenSSL DES functions are renamed to begin with DES_ instead of
des_. Compatibility routines are provided and declared by including
openssl/des_old.h. Those declarations are the same as were in des.h
when the OpenSSL project started, which is exactly how libdes looked
at that time, and hopefully still looks today.
The compatibility functions will be removed in some future release, at
the latest in version 1.0.
|
| |
|
|
|
|
|
| |
types.h to ossl_typ.h.
Also, it seems like krb5 was forgotten in some places.
|
| |
|
| |
|
|
|
|
|
|
|
| |
like des_read_password and friends (backward compatibility functions
using this new API are provided). The purpose is to remove prompting
functions from the DES code section as well as provide for prompting
through dialog boxes in a window system and the like.
|
|
|
|
| |
performance to gain.
|
|
|
|
|
|
|
| |
assembler code works with.
Of course, the assembler code could differ between platforms. That
might happen in the future.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
functions on platform were that's the best way to handle exporting
global variables in shared libraries. To enable this functionality,
one must configure with "EXPORT_VAR_AS_FN" or defined the C macro
"OPENSSL_EXPORT_VAR_AS_FUNCTION" in crypto/opensslconf.h (the latter
is normally done by Configure or something similar).
To implement a global variable, use the macro OPENSSL_IMPLEMENT_GLOBAL
in the source file (foo.c) like this:
OPENSSL_IMPLEMENT_GLOBAL(int,foo)=1;
OPENSSL_IMPLEMENT_GLOBAL(double,bar);
To declare a global variable, use the macros OPENSSL_DECLARE_GLOBAL
and OPENSSL_GLOBAL_REF in the header file (foo.h) like this:
OPENSSL_DECLARE_GLOBAL(int,foo);
#define foo OPENSSL_GLOBAL_REF(foo)
OPENSSL_DECLARE_GLOBAL(double,bar);
#define bar OPENSSL_GLOBAL_REF(bar)
The #defines are very important, and therefore so is including the
header file everywere where the defined globals are used.
The macro OPENSSL_EXPORT_VAR_AS_FUNCTION also affects the definition
of ASN.1 items, but that structure is a bt different.
The largest change is in util/mkdef.pl which has been enhanced with
better and easier to understand logic to choose which symbols should
go into the Windows .def files as well as a number of fixes and code
cleanup (among others, algorithm keywords are now sorted
lexicographically to avoid constant rewrites).
|
|
|
|
|
|
|
|
| |
and make all files the depend on it include it without prefixing it
with openssl/.
This means that all Makefiles will have $(TOP) as one of the include
directories.
|