mirror of
https://github.com/openssl/openssl.git
synced 2025-04-06 20:20:50 +08:00
Allow for ./config no-sha0 [from stable].
This commit is contained in:
parent
4c3a2d64e4
commit
405d9761a5
@ -248,15 +248,6 @@ be added to the end of this file.
|
||||
|
||||
Cosmetic mingw update. PR: 924
|
||||
|
||||
2005-01-09 18:58 appro
|
||||
|
||||
Changed:
|
||||
crypto/evp/c_alld.c (1.4.2.1), "Exp", lines: +1 -1
|
||||
crypto/evp/m_sha.c (1.8.2.1), "Exp", lines: +1 -1
|
||||
crypto/sha/shatest.c (1.11.2.2), "Exp", lines: +2 -2
|
||||
|
||||
Allow for ./config no-sha0. PR: 993
|
||||
|
||||
2005-03-12 10:28 appro
|
||||
|
||||
Changed:
|
||||
|
@ -75,7 +75,7 @@ void OpenSSL_add_all_digests(void)
|
||||
EVP_add_digest_alias(SN_md5,"ssl2-md5");
|
||||
EVP_add_digest_alias(SN_md5,"ssl3-md5");
|
||||
#endif
|
||||
#ifndef OPENSSL_NO_SHA
|
||||
#if !defined(OPENSSL_NO_SHA) && !defined(OPENSSL_NO_SHA0)
|
||||
EVP_add_digest(EVP_sha());
|
||||
#ifndef OPENSSL_NO_DSA
|
||||
EVP_add_digest(EVP_dss());
|
||||
|
@ -59,7 +59,7 @@
|
||||
#include <stdio.h>
|
||||
#include "cryptlib.h"
|
||||
|
||||
#ifndef OPENSSL_NO_SHA
|
||||
#if !defined(OPENSSL_NO_SHA) && !defined(OPENSSL_NO_SHA0)
|
||||
|
||||
#include <openssl/evp.h>
|
||||
#include <openssl/objects.h>
|
||||
|
@ -62,10 +62,10 @@
|
||||
|
||||
#include "../e_os.h"
|
||||
|
||||
#ifdef OPENSSL_NO_SHA
|
||||
#if defined(OPENSSL_NO_SHA) || defined(OPENSSL_NO_SHA0)
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
printf("No SHA support\n");
|
||||
printf("No SHA0 support\n");
|
||||
return(0);
|
||||
}
|
||||
#else
|
||||
|
Loading…
x
Reference in New Issue
Block a user