summaryrefslogtreecommitdiff
path: root/files.h
diff options
context:
space:
mode:
authorweidai <weidai11@users.noreply.github.com>2004-07-22 00:51:57 +0000
committerweidai <weidai11@users.noreply.github.com>2004-07-22 00:51:57 +0000
commit393ae4859a9d3df3c5aee304b4c65121b657f613 (patch)
treefaff40f3429fb7fb70249c83afd5378f92ebdb31 /files.h
parentad8043d50c19d94177a420fba5ef6e9fd15afff1 (diff)
downloadcryptopp-git-393ae4859a9d3df3c5aee304b4c65121b657f613.tar.gz
fix documentation, fix PanamaMAC, fix algorithm names
Diffstat (limited to 'files.h')
-rw-r--r--files.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/files.h b/files.h
index e54d8902..baa57a3e 100644
--- a/files.h
+++ b/files.h
@@ -10,7 +10,7 @@
NAMESPACE_BEGIN(CryptoPP)
-//! .
+//! file-based implementation of Store interface
class CRYPTOPP_DLL FileStore : public Store, private FilterPutSpaceHelper, public NotCopyable
{
public:
@@ -45,7 +45,7 @@ private:
bool m_waiting;
};
-//! .
+//! file-based implementation of Source interface
class CRYPTOPP_DLL FileSource : public SourceTemplate<FileStore>
{
public:
@@ -63,7 +63,7 @@ public:
std::istream* GetStream() {return m_store.GetStream();}
};
-//! .
+//! file-based implementation of Sink interface
class CRYPTOPP_DLL FileSink : public Sink, public NotCopyable
{
public: