00001 /* 00002 * P::Classes - Portable C++ Application Framework 00003 * Copyright (C) 2000-2003 Christian Prochnow <cproch@seculogix.de> 00004 * 00005 * This library is free software; you can redistribute it and/or 00006 * modify it under the terms of the GNU Lesser General Public 00007 * License as published by the Free Software Foundation; either 00008 * version 2 of the License, or (at your option) any later version. 00009 * 00010 * This library is distributed in the hope that it will be useful, 00011 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00013 * Lesser General Public License for more details. 00014 * 00015 * You should have received a copy of the GNU Lesser General Public 00016 * License along with this library; if not, write to the Free Software 00017 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00018 */ 00019 00020 #ifndef _pdigest_h_ 00021 #define _pdigest_h_ 00022 00023 #include <pclasses/pexport.h> 00024 #include <string> 00025 #include <iostream> 00026 00031 namespace P { 00032 00034 00039 class PCRYPTO_EXPORT Digest { 00040 public: 00041 Digest(); 00042 virtual ~Digest(); 00043 00045 00051 virtual void update(const char* buff, size_t len) = 0; 00052 00054 00060 virtual std::string digest() const = 0; 00061 00063 00069 virtual void clear() = 0; 00070 00072 Digest& operator<<(const std::string& str); 00073 00075 friend PCRYPTO_EXPORT std::ostream& operator<<(std::ostream& os, const Digest& dig); 00076 00077 }; 00078 00079 } 00080 00081 #endif
1.3.3