Botan 1.10.17
md5.h
Go to the documentation of this file.
1/*
2* MD5
3* (C) 1999-2008 Jack Lloyd
4*
5* Distributed under the terms of the Botan license
6*/
7
8#ifndef BOTAN_MD5_H__
9#define BOTAN_MD5_H__
10
11#include <botan/mdx_hash.h>
12
13namespace Botan {
14
15/**
16* MD5
17*/
18class BOTAN_DLL MD5 : public MDx_HashFunction
19 {
20 public:
21 std::string name() const { return "MD5"; }
22 size_t output_length() const { return 16; }
23 HashFunction* clone() const { return new MD5; }
24
25 void clear();
26
27 MD5() : MDx_HashFunction(64, false, true), M(16), digest(4)
28 { clear(); }
29 protected:
30 void compress_n(const byte[], size_t blocks);
31 void copy_out(byte[]);
32
33 /**
34 * The message buffer, exposed for use by subclasses (x86 asm)
35 */
37
38 /**
39 * The digest value, exposed for use by subclasses (x86 asm)
40 */
42 };
43
44}
45
46#endif
MD5()
Definition md5.h:27
std::string name() const
Definition md5.h:21
SecureVector< u32bit > digest
Definition md5.h:41
SecureVector< u32bit > M
Definition md5.h:36
size_t output_length() const
Definition md5.h:22
HashFunction * clone() const
Definition md5.h:23
void clear()
Definition md5.cpp:126
MDx_HashFunction(size_t block_length, bool big_byte_endian, bool big_bit_endian, size_t counter_size=8)
Definition mdx_hash.cpp:17