Does Java use AES-NI when available?

3.4k Views Asked by At

I just heard of the instruction set extension AES-NI. Does Java's JIT compiler compile the application to use AES-NI if it is available to enhance performance?

And if yes, does it also do so if it is not sure that AES will be used (like when using TLS)?

2

There are 2 best solutions below

1
On BEST ANSWER
4
On

Java 8 and 7u40 and later include support for x86 AES intrinsics for the built-in SunJCE provider, but the feature is not enabled by default (it is).

Search globals.hpp for "AES":

product(bool, UseAES, false,                                              \
        "Control whether AES instructions can be used on x86/x64")        \
...
product(bool, UseAESIntrinsics, false,                                    \
        "Use intrinsics for AES versions of crypto")                      \

You can enable the feature by passing the -XX:+UseAES -XX:+UseAESIntrinsics options to the virtual machine.