~ubuntu-branches/debian/sid/botan/sid

« back to all changes in this revision

Viewing changes to src/lib/block/seed/seed.h

  • Committer: Package Import Robot
  • Author(s): Laszlo Boszormenyi (GCS)
  • Date: 2018-03-01 22:23:25 UTC
  • mfrom: (1.2.2)
  • Revision ID: package-import@ubuntu.com-20180301222325-7p7vc45gu3hta34d
Tags: 2.4.0-2
* Don't remove .doctrees from the manual if it doesn't exist.
* Don't specify parallel to debhelper.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
* SEED
 
3
* (C) 1999-2007 Jack Lloyd
 
4
*
 
5
* Botan is released under the Simplified BSD License (see license.txt)
 
6
*/
 
7
 
 
8
#ifndef BOTAN_SEED_H_
 
9
#define BOTAN_SEED_H_
 
10
 
 
11
#include <botan/block_cipher.h>
 
12
 
 
13
namespace Botan {
 
14
 
 
15
/**
 
16
* SEED, a Korean block cipher
 
17
*/
 
18
class BOTAN_PUBLIC_API(2,0) SEED final : public Block_Cipher_Fixed_Params<16, 16>
 
19
   {
 
20
   public:
 
21
      void encrypt_n(const uint8_t in[], uint8_t out[], size_t blocks) const override;
 
22
      void decrypt_n(const uint8_t in[], uint8_t out[], size_t blocks) const override;
 
23
 
 
24
      void clear() override;
 
25
      std::string name() const override { return "SEED"; }
 
26
      BlockCipher* clone() const override { return new SEED; }
 
27
   private:
 
28
      void key_schedule(const uint8_t[], size_t) override;
 
29
 
 
30
      secure_vector<uint32_t> m_K;
 
31
   };
 
32
 
 
33
}
 
34
 
 
35
#endif