1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-08-08 17:42:09 +03:00

Renamed sha2.{c,h} to sha256.{c,h} and sha4.{c,h} to sha512.{c,h}

This commit is contained in:
Paul Bakker
2013-06-30 14:49:12 +02:00
parent 9e36f0475f
commit d2681d82e2
21 changed files with 45 additions and 45 deletions

View File

@@ -39,8 +39,8 @@ set(src
pkcs12.c
rsa.c
sha1.c
sha2.c
sha4.c
sha256.c
sha512.c
ssl_cache.c
ssl_ciphersuites.c
ssl_cli.c

View File

@@ -48,8 +48,8 @@ OBJS= aes.o arc4.o asn1parse.o \
oid.o \
padlock.o pbkdf2.o pem.o \
pkcs5.o pkcs11.o pkcs12.o \
rsa.o sha1.o sha2.o \
sha4.o ssl_cache.o ssl_cli.o \
rsa.o sha1.o sha256.o \
sha512.o ssl_cache.o ssl_cli.o \
ssl_srv.o ssl_ciphersuites.o \
ssl_tls.o timing.o version.o \
x509parse.o x509write.o xtea.o

View File

@@ -130,11 +130,11 @@
#endif
#if defined(POLARSSL_SHA256_C)
#include "polarssl/sha2.h"
#include "polarssl/sha256.h"
#endif
#if defined(POLARSSL_SHA512_C)
#include "polarssl/sha4.h"
#include "polarssl/sha512.h"
#endif
#if defined(POLARSSL_SSL_TLS_C)

View File

@@ -50,11 +50,11 @@
#endif
#if defined(POLARSSL_SHA256_C)
#include "polarssl/sha2.h"
#include "polarssl/sha256.h"
#endif
#if defined(POLARSSL_SHA512_C)
#include "polarssl/sha4.h"
#include "polarssl/sha512.h"
#endif
#include <stdlib.h>

View File

@@ -32,7 +32,7 @@
#if defined(POLARSSL_SHA256_C)
#include "polarssl/sha2.h"
#include "polarssl/sha256.h"
#if defined(POLARSSL_FS_IO) || defined(POLARSSL_SELF_TEST)
#include <stdio.h>

View File

@@ -32,7 +32,7 @@
#if defined(POLARSSL_SHA512_C)
#include "polarssl/sha4.h"
#include "polarssl/sha512.h"
#if defined(POLARSSL_FS_IO) || defined(POLARSSL_SELF_TEST)
#include <stdio.h>

View File

@@ -41,7 +41,7 @@
#include "polarssl/des.h"
#include "polarssl/debug.h"
#include "polarssl/ssl.h"
#include "polarssl/sha2.h"
#include "polarssl/sha256.h"
#if defined(POLARSSL_GCM_C)
#include "polarssl/gcm.h"

View File

@@ -56,10 +56,10 @@
#include "polarssl/sha1.h"
#endif
#if defined(POLARSSL_SHA256_C)
#include "polarssl/sha2.h"
#include "polarssl/sha256.h"
#endif
#if defined(POLARSSL_SHA512_C)
#include "polarssl/sha4.h"
#include "polarssl/sha512.h"
#endif
#include "polarssl/dhm.h"
#if defined(POLARSSL_PKCS5_C)