Botan
1.10.17
src
hash
md4_x86_32
md4_x86_32.h
Go to the documentation of this file.
1
/*
2
* MD4 (x86-32)
3
* (C) 1999-2007 Jack Lloyd
4
*
5
* Distributed under the terms of the Botan license
6
*/
7
8
#ifndef BOTAN_MD4_X86_32_H__
9
#define BOTAN_MD4_X86_32_H__
10
11
#include <botan/md4.h>
12
13
namespace
Botan
{
14
15
/**
16
* MD4 using x86 assembly
17
*/
18
class
BOTAN_DLL
MD4_X86_32
:
public
MD4
19
{
20
public
:
21
HashFunction
*
clone
()
const
{
return
new
MD4_X86_32
; }
22
private
:
23
void
compress_n(
const
byte
[],
size_t
blocks);
24
};
25
26
}
27
28
#endif
Botan::HashFunction
Definition
hash.h:22
Botan::MD4_X86_32
Definition
md4_x86_32.h:19
Botan::MD4_X86_32::clone
HashFunction * clone() const
Definition
md4_x86_32.h:21
Botan::MD4::MD4
MD4()
Definition
md4.h:27
Botan
Definition
algo_base.h:14
Generated by
1.18.0