Update comments
parent
f165d1822d
commit
5ea410c1d3
1
config.h
1
config.h
|
|
@ -586,7 +586,6 @@ NAMESPACE_END
|
|||
#endif
|
||||
|
||||
// Fixup for SunCC 12.1-12.4. Bad code generation in AES_Encrypt and friends.
|
||||
// http://github.com/weidai11/cryptopp/issues/226
|
||||
#if defined(__SUNPRO_CC) && (__SUNPRO_CC <= 0x5130)
|
||||
# undef CRYPTOPP_AESNI_AVAILABLE
|
||||
#endif
|
||||
|
|
|
|||
3
simon.h
3
simon.h
|
|
@ -25,7 +25,8 @@
|
|||
# define CRYPTOPP_SIMON128_ADVANCED_PROCESS_BLOCKS 1
|
||||
#endif
|
||||
|
||||
// Yet another SunStudio/SunCC workaround
|
||||
// Yet another SunStudio/SunCC workaround. Failed self tests
|
||||
// in SSE code paths on i386 for SunStudio 12.3 and below.
|
||||
#if defined(__SUNPRO_CC)
|
||||
# undef CRYPTOPP_SIMON64_ADVANCED_PROCESS_BLOCKS
|
||||
# undef CRYPTOPP_SIMON128_ADVANCED_PROCESS_BLOCKS
|
||||
|
|
|
|||
3
speck.h
3
speck.h
|
|
@ -25,7 +25,8 @@
|
|||
# define CRYPTOPP_SPECK128_ADVANCED_PROCESS_BLOCKS 1
|
||||
#endif
|
||||
|
||||
// Yet another SunStudio/SunCC workaround
|
||||
// Yet another SunStudio/SunCC workaround. Failed self tests
|
||||
// in SSE code paths on i386 for SunStudio 12.3 and below.
|
||||
#if defined(__SUNPRO_CC)
|
||||
# undef CRYPTOPP_SPECK64_ADVANCED_PROCESS_BLOCKS
|
||||
# undef CRYPTOPP_SPECK128_ADVANCED_PROCESS_BLOCKS
|
||||
|
|
|
|||
Loading…
Reference in New Issue