summaryrefslogtreecommitdiff
path: root/vmac.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2020-02-22 16:18:43 -0500
committerJeffrey Walton <noloader@gmail.com>2020-02-22 16:18:43 -0500
commit5d688500414f138491f2ae0d298f9378656fde3c (patch)
treec29177c1cb942d80f41bca4168df2bdd5fcb4974 /vmac.h
parentcd16435544d153f820c77a674a9ae4ac5f662e9e (diff)
downloadcryptopp-git-5d688500414f138491f2ae0d298f9378656fde3c.tar.gz
Re-enable SSE2 probes for Solaris
Fix VMAC-64 crash on 32-bit Solaris i86pc
Diffstat (limited to 'vmac.h')
-rw-r--r--vmac.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/vmac.h b/vmac.h
index 23ffef78..44fe09fc 100644
--- a/vmac.h
+++ b/vmac.h
@@ -68,10 +68,10 @@ protected:
/// \tparam T_BlockCipher block cipher
/// \tparam T_DigestBitSize digest size, in bits
/// \details VMAC is a block cipher-based message authentication code algorithm
-/// using a universal hash proposed by Ted Krovetz and Wei Dai in April 2007. The
-/// algorithm was designed for high performance backed by a formal analysis.
+/// using a universal hash proposed by Ted Krovetz and Wei Dai in April 2007. The
+/// algorithm was designed for high performance backed by a formal analysis.
/// \details The implementation is based on Ted Krovetz's public domain vmac.c
-/// and <a href="http://tools.ietf.org/html/draft-krovetz-vmac-01">draft-krovetz-vmac-01.txt</a>.
+/// and <a href="http://tools.ietf.org/html/draft-krovetz-vmac-01">draft-krovetz-vmac-01.txt</a>.
/// \sa <a href="http://www.cryptolounge.org/wiki/VMAC">VMAC</a>.
/// \since Crypto++ 5.5
template <class T_BlockCipher, int T_DigestBitSize = 128>