Fix bug [SHA1 IA-64 being disabled] introduced with Stratus VOS update.
PR: 1130
This commit is contained in:
parent
a7ad2afa5e
commit
66ee67be03
1 changed files with 7 additions and 7 deletions
|
@ -115,19 +115,19 @@
|
||||||
# endif
|
# endif
|
||||||
|
|
||||||
# ifdef SHA1_ASM
|
# ifdef SHA1_ASM
|
||||||
# if !defined(B_ENDIAN)
|
# if defined(__i386) || defined(__i386__) || defined(_M_IX86) || defined(__INTEL__)
|
||||||
# if defined(__i386) || defined(__i386__) || defined(_M_IX86) || defined(__INTEL__)
|
# if !defined(B_ENDIAN)
|
||||||
# define sha1_block_host_order sha1_block_asm_host_order
|
# define sha1_block_host_order sha1_block_asm_host_order
|
||||||
# define DONT_IMPLEMENT_BLOCK_HOST_ORDER
|
# define DONT_IMPLEMENT_BLOCK_HOST_ORDER
|
||||||
# define sha1_block_data_order sha1_block_asm_data_order
|
# define sha1_block_data_order sha1_block_asm_data_order
|
||||||
# define DONT_IMPLEMENT_BLOCK_DATA_ORDER
|
# define DONT_IMPLEMENT_BLOCK_DATA_ORDER
|
||||||
# define HASH_BLOCK_DATA_ORDER_ALIGNED sha1_block_asm_data_order
|
# define HASH_BLOCK_DATA_ORDER_ALIGNED sha1_block_asm_data_order
|
||||||
# elif defined(__ia64) || defined(__ia64__) || defined(_M_IA64)
|
|
||||||
# define sha1_block_host_order sha1_block_asm_host_order
|
|
||||||
# define DONT_IMPLEMENT_BLOCK_HOST_ORDER
|
|
||||||
# define sha1_block_data_order sha1_block_asm_data_order
|
|
||||||
# define DONT_IMPLEMENT_BLOCK_DATA_ORDER
|
|
||||||
# endif
|
# endif
|
||||||
|
# elif defined(__ia64) || defined(__ia64__) || defined(_M_IA64)
|
||||||
|
# define sha1_block_host_order sha1_block_asm_host_order
|
||||||
|
# define DONT_IMPLEMENT_BLOCK_HOST_ORDER
|
||||||
|
# define sha1_block_data_order sha1_block_asm_data_order
|
||||||
|
# define DONT_IMPLEMENT_BLOCK_DATA_ORDER
|
||||||
# endif
|
# endif
|
||||||
# endif
|
# endif
|
||||||
void sha1_block_host_order (SHA_CTX *c, const void *p,size_t num);
|
void sha1_block_host_order (SHA_CTX *c, const void *p,size_t num);
|
||||||
|
|
Loading…
Reference in a new issue