Hi Wei,

A few Doxygen comments to help someone track down a SecByteBlock (and
friends) without grepping source files (which would return about 60
Crypto++ files). The annotated class list does not currently include
the typedef (http://www.cryptopp.com/docs/ref/annotated.html).

Jeff

cryptopp$ svn diff secblock.h > secblock.h.diff
cryptopp$ cat sec
secblock.h       secblock.h.diff  seckey.h
cryptopp$ cat sec
secblock.h       secblock.h.diff  seckey.h
cryptopp$ cat secblock.h.diff
Index: secblock.h
===================================================================
--- secblock.h  (revision 521)
+++ secblock.h  (working copy)
@@ -413,8 +413,11 @@
        T *m_ptr;
 };

+//! SecByteBlock is a tydef of SecBlock<byte>
 typedef SecBlock<byte> SecByteBlock;
+//! AlignedSecByteBlock is a typedef of SecBlock<byte,
AllocatorWithCleanup<byte, true> >
 typedef SecBlock<byte, AllocatorWithCleanup<byte, true> > AlignedSecByteBlock;
+//! SecWordBlock is a typedef SecBlock<word>
 typedef SecBlock<word> SecWordBlock;

 //! a SecBlock with fixed size, allocated statically

-- 
You received this message because you are subscribed to the "Crypto++ Users" 
Google Group.
To unsubscribe, send an email to [email protected].
More information about Crypto++ and this group is available at 
http://www.cryptopp.com.

Reply via email to