summaryrefslogtreecommitdiff
path: root/rijndael.h
diff options
context:
space:
mode:
authorweidai <weidai11@users.noreply.github.com>2010-07-24 05:55:22 +0000
committerweidai <weidai11@users.noreply.github.com>2010-07-24 05:55:22 +0000
commit7adbf89681278ddfb5e3fb82a2e39d1a97daa651 (patch)
tree9fa57aeee5c779a3c9b4f88006050d81ff68e6ef /rijndael.h
parenta070ff16ae0829474effa76fa0305e6d63966123 (diff)
downloadcryptopp-git-7adbf89681278ddfb5e3fb82a2e39d1a97daa651.tar.gz
add support for AES-NI and CLMUL instruction sets in AES and GMAC/GCM
Diffstat (limited to 'rijndael.h')
-rw-r--r--rijndael.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/rijndael.h b/rijndael.h
index d6021868..64c784b0 100644
--- a/rijndael.h
+++ b/rijndael.h
@@ -50,6 +50,9 @@ class CRYPTOPP_DLL Rijndael : public Rijndael_Info, public BlockCipherDocumentat
{
public:
void ProcessAndXorBlock(const byte *inBlock, const byte *xorBlock, byte *outBlock) const;
+#if CRYPTOPP_BOOL_AESNI_INTRINSICS_AVAILABLE
+ size_t AdvancedProcessBlocks(const byte *inBlocks, const byte *xorBlocks, byte *outBlocks, size_t length, word32 flags) const;
+#endif
};
public: