# HG changeset patch # User Misaki Miyashita # Date 1377282503 25200 # Node ID eb73f58521325f03f0266e351bae2a94580d5a37 # Parent 7cd7288003bdec25b8bbb316aa7fc23fae23a6a2 17329641 AES mechanisms in pkcs11 engine of OpenSSL 1.0.1 are broken on SPARC64-X diff -r 7cd7288003bd -r eb73f5852132 components/openssl/openssl-1.0.1/engines/pkcs11/hw_pk11.c --- a/components/openssl/openssl-1.0.1/engines/pkcs11/hw_pk11.c Fri Aug 23 10:22:29 2013 -0700 +++ b/components/openssl/openssl-1.0.1/engines/pkcs11/hw_pk11.c Fri Aug 23 11:28:23 2013 -0700 @@ -3911,7 +3911,7 @@ { uint_t ui = 0; (void) getisax(&ui, 1); - present = (ui & (AV_SPARC_AES)) > 0; + present = (ui & (AV_SPARC_FJAES)) > 0; } return (present);