Botan 3.4.0
Crypto and TLS for C&
cast128.h
Go to the documentation of this file.
1/*
2* CAST-128
3* (C) 1999-2007 Jack Lloyd
4*
5* Botan is released under the Simplified BSD License (see license.txt)
6*/
7
8#ifndef BOTAN_CAST128_H_
9#define BOTAN_CAST128_H_
10
11#include <botan/block_cipher.h>
12
13namespace Botan {
14
15/**
16* CAST-128
17*/
18class CAST_128 final : public Block_Cipher_Fixed_Params<8, 11, 16> {
19 public:
20 void encrypt_n(const uint8_t in[], uint8_t out[], size_t blocks) const override;
21 void decrypt_n(const uint8_t in[], uint8_t out[], size_t blocks) const override;
22
23 void clear() override;
24
25 std::string name() const override { return "CAST-128"; }
26
27 std::unique_ptr<BlockCipher> new_object() const override { return std::make_unique<CAST_128>(); }
28
29 bool has_keying_material() const override;
30
31 private:
32 void key_schedule(std::span<const uint8_t> key) override;
33
34 static void cast_ks(secure_vector<uint32_t>& ks, secure_vector<uint32_t>& user_key);
35
38};
39
40} // namespace Botan
41
42#endif
void decrypt_n(const uint8_t in[], uint8_t out[], size_t blocks) const override
Definition cast128.cpp:261
void clear() override
Definition cast128.cpp:362
void encrypt_n(const uint8_t in[], uint8_t out[], size_t blocks) const override
Definition cast128.cpp:186
std::string name() const override
Definition cast128.h:25
std::unique_ptr< BlockCipher > new_object() const override
Definition cast128.h:27
bool has_keying_material() const override
Definition cast128.cpp:333
int(* final)(unsigned char *, CTX *)
std::vector< T, secure_allocator< T > > secure_vector
Definition secmem.h:61