summaryrefslogtreecommitdiff
path: root/gcm.cpp
diff options
context:
space:
mode:
authorweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2009-03-13 07:32:58 +0000
committerweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2009-03-13 07:32:58 +0000
commita0621b5e0bd2af68fd3228517ce56b1b546d9227 (patch)
tree5323bddbf3923bd38cfbc7e744ae92fd925f2243 /gcm.cpp
parentd1e38e564a235daba109b5cf1a369432d9c37b3d (diff)
downloadcryptopp-a0621b5e0bd2af68fd3228517ce56b1b546d9227.tar.gz
fix Sun Studio compile
git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@448 57ff6487-cd31-0410-9ec3-f628ee90f5f0
Diffstat (limited to 'gcm.cpp')
-rw-r--r--gcm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcm.cpp b/gcm.cpp
index 61394f0..75abe12 100644
--- a/gcm.cpp
+++ b/gcm.cpp
@@ -198,7 +198,7 @@ void GCM_Base::Resync(const byte *iv, size_t len)
GCM_Base::AuthenticateBlocks(m_buffer, HASH_BLOCKSIZE);
}
- PutBlock<word64, BigEndian, true>::PutBlock(NULL, m_buffer)(0)(origLen*8);
+ PutBlock<word64, BigEndian, true>(NULL, m_buffer)(0)(origLen*8);
GCM_Base::AuthenticateBlocks(m_buffer, HASH_BLOCKSIZE);
}