8143925: Enhancing CounterMode.crypt() for AES

Add intrinsic for CounterMode.crypt() to leverage the parallel nature of AES in Counter(CTR) Mode.

Reviewed-by: kvn, ascarpino
This commit is contained in:
Kishor Kharbas 2015-12-28 23:11:01 -08:00 committed by Vladimir Kozlov
parent fb318fc787
commit 790f5bded4
25 changed files with 1079 additions and 9 deletions

View file

@ -127,6 +127,7 @@ address StubRoutines::_aescrypt_encryptBlock = NULL;
address StubRoutines::_aescrypt_decryptBlock = NULL;
address StubRoutines::_cipherBlockChaining_encryptAESCrypt = NULL;
address StubRoutines::_cipherBlockChaining_decryptAESCrypt = NULL;
address StubRoutines::_counterMode_AESCrypt = NULL;
address StubRoutines::_ghash_processBlocks = NULL;
address StubRoutines::_sha1_implCompress = NULL;