~ubuntu-branches/ubuntu/jaunty/fqterm/jaunty

« back to all changes in this revision

Viewing changes to src/protocol/internal/fqterm_ssh_md5.h

  • Committer: Bazaar Package Importer
  • Author(s): LI Daobing
  • Date: 2009-02-14 09:32:53 UTC
  • Revision ID: james.westby@ubuntu.com-20090214093253-s2e6544ox2aj79rj
Tags: upstream-0.9.3+svn632
ImportĀ upstreamĀ versionĀ 0.9.3+svn632

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *   fqterm, a terminal emulator for both BBS and *nix.                    *
 
3
 *   Copyright (C) 2008 fqterm development group.                          *
 
4
 *                                                                         *
 
5
 *   This program is free software; you can redistribute it and/or modify  *
 
6
 *   it under the terms of the GNU General Public License as published by  *
 
7
 *   the Free Software Foundation; either version 2 of the License, or     *
 
8
 *   (at your option) any later version.                                   *
 
9
 *                                                                         *
 
10
 *   This program is distributed in the hope that it will be useful,       *
 
11
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 
12
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 
13
 *   GNU General Public License for more details.                          *
 
14
 *                                                                         *
 
15
 *   You should have received a copy of the GNU General Public License     *
 
16
 *   along with this program; if not, write to the                         *
 
17
 *   Free Software Foundation, Inc.,                                       *
 
18
 *   51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.               *
 
19
 ***************************************************************************/
 
20
 
 
21
#ifndef FQTERM_SSH_MD5_H
 
22
#define FQTERM_SSH_MD5_H
 
23
 
 
24
#include <stdio.h>
 
25
 
 
26
#include <openssl/md5.h>
 
27
 
 
28
#include "fqterm_ssh_types.h"
 
29
#include "fqterm_ssh_hash.h"
 
30
 
 
31
namespace FQTerm {
 
32
 
 
33
class FQTermSSHMD5: public FQTermSSHHash {
 
34
protected:
 
35
  MD5_CTX d_md5;
 
36
public:
 
37
  FQTermSSHMD5()
 
38
    : FQTermSSHHash() {
 
39
    d_digestLength = 16;
 
40
    MD5_Init(&d_md5);
 
41
  }
 
42
  virtual ~FQTermSSHMD5() {}
 
43
  
 
44
  void update(u_char *data, int len);
 
45
  void final(u_char *digest);
 
46
};
 
47
 
 
48
}  // namespace FQTerm
 
49
 
 
50
#endif //FQTERM_SSH_MD5_H