hash: class decleration style
This commit is contained in:
parent
51487cd34e
commit
ef17f9c7d1
@ -21,8 +21,7 @@
|
||||
#include <cstdint>
|
||||
|
||||
|
||||
namespace util {
|
||||
namespace hash {
|
||||
namespace util { namespace hash {
|
||||
class MD2 {
|
||||
public:
|
||||
typedef std::array<uint8_t,16> digest_t;
|
||||
@ -46,7 +45,6 @@ namespace util {
|
||||
uint8_t C[16];
|
||||
uint8_t X[48];
|
||||
};
|
||||
}
|
||||
}
|
||||
} }
|
||||
|
||||
#endif
|
||||
|
@ -20,8 +20,7 @@
|
||||
#include <array>
|
||||
#include <cstdint>
|
||||
|
||||
namespace util {
|
||||
namespace hash {
|
||||
namespace util { namespace hash {
|
||||
class MD4 {
|
||||
public:
|
||||
typedef std::array<uint8_t,16> digest_t;
|
||||
@ -48,7 +47,6 @@ namespace util {
|
||||
uint8_t Xb[64];
|
||||
};
|
||||
};
|
||||
}
|
||||
}
|
||||
} }
|
||||
|
||||
#endif
|
||||
|
@ -21,8 +21,7 @@
|
||||
#include <cstdint>
|
||||
#include <cstdlib>
|
||||
|
||||
namespace util {
|
||||
namespace hash {
|
||||
namespace util { namespace hash {
|
||||
class MD5 {
|
||||
public:
|
||||
typedef std::array<uint8_t,16> digest_t;
|
||||
@ -51,10 +50,9 @@ namespace util {
|
||||
uint8_t Xb[64];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
typedef uint8_t md5_t;
|
||||
md5_t md5 (const void *restrict data, size_t len);
|
||||
}
|
||||
} }
|
||||
|
||||
#endif
|
||||
|
@ -20,8 +20,7 @@
|
||||
|
||||
#include <array>
|
||||
|
||||
namespace util {
|
||||
namespace hash {
|
||||
namespace util { namespace hash {
|
||||
class RIPEMD {
|
||||
public:
|
||||
typedef std::array<uint8_t,20> digest_t;
|
||||
@ -52,7 +51,6 @@ namespace util {
|
||||
size_t size;
|
||||
} m_buffer;
|
||||
};
|
||||
}
|
||||
}
|
||||
} }
|
||||
|
||||
#endif
|
||||
|
@ -21,8 +21,7 @@
|
||||
#include <array>
|
||||
#include <cstdint>
|
||||
|
||||
namespace util {
|
||||
namespace hash {
|
||||
namespace util { namespace hash {
|
||||
class SHA256 {
|
||||
public:
|
||||
typedef std::array<uint8_t,32> digest_t;
|
||||
@ -49,7 +48,6 @@ namespace util {
|
||||
std::array<uint8_t, 64> C;
|
||||
};
|
||||
};
|
||||
}
|
||||
}
|
||||
} }
|
||||
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user