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

« back to all changes in this revision

Viewing changes to src/protocol/internal/fqterm_ssh_cipher.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_CIPHER_H
 
22
#define FQTERM_SSH_CIPHER_H
 
23
 
 
24
#include <stdlib.h>
 
25
 
 
26
#include "fqterm_ssh_types.h"
 
27
#include "fqterm_ssh_const.h"
 
28
 
 
29
namespace FQTerm {
 
30
 
 
31
class FQTermSSHCipher {
 
32
protected:
 
33
  char *d_name;
 
34
 
 
35
public:
 
36
  FQTermSSHCipher() {
 
37
    d_name = NULL;
 
38
  }
 
39
  
 
40
  virtual ~FQTermSSHCipher(){}
 
41
  
 
42
  const char *name() const {
 
43
    return d_name;
 
44
  }
 
45
 
 
46
  virtual int blockSize() const = 0;
 
47
  virtual int getKeySize() const = 0;
 
48
  virtual int getIVSize() const = 0;
 
49
  
 
50
  virtual void setIV(const u_char *data) = 0;
 
51
  virtual void setKey(const u_char *data) = 0;
 
52
  virtual void encrypt(const u_char *source, u_char *dest, int len) = 0;
 
53
  virtual void decrypt(const u_char *source, u_char *dest, int len) = 0;
 
54
};
 
55
 
 
56
}  // namespace FQTerm
 
57
 
 
58
#endif  // FQTERM_SSH_CIPHER_H