mirror of
https://github.com/albertobsd/keyhunt.git
synced 2025-03-17 13:21:46 +01:00
60 lines
1.7 KiB
C++
60 lines
1.7 KiB
C++
/*
|
|
* This file is part of the VanitySearch distribution (https://github.com/JeanLucPons/VanitySearch).
|
|
* Copyright (c) 2019 Jean Luc PONS.
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, version 3.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef RIPEMD160_H
|
|
#define RIPEMD160_H
|
|
|
|
#include <string>
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <inttypes.h>
|
|
#include <string.h>
|
|
|
|
/** A hasher class for RIPEMD-160. */
|
|
class CRIPEMD160
|
|
{
|
|
private:
|
|
uint32_t s[5];
|
|
unsigned char buf[64];
|
|
uint64_t bytes;
|
|
|
|
public:
|
|
CRIPEMD160();
|
|
void Write(const unsigned char* data, size_t len);
|
|
void Finalize(unsigned char hash[20]);
|
|
};
|
|
|
|
void ripemd160(unsigned char *input,int length,unsigned char *digest);
|
|
void ripemd160_32(unsigned char *input, unsigned char *digest);
|
|
void ripemd160sse_32(uint8_t *i0, uint8_t *i1, uint8_t *i2, uint8_t *i3,
|
|
uint8_t *d0, uint8_t *d1, uint8_t *d2, uint8_t *d3);
|
|
void ripemd160sse_test();
|
|
std::string ripemd160_hex(unsigned char *digest);
|
|
|
|
static inline bool ripemd160_comp_hash(uint8_t *h0, uint8_t *h1) {
|
|
uint32_t *h0i = (uint32_t *)h0;
|
|
uint32_t *h1i = (uint32_t *)h1;
|
|
return (h0i[0] == h1i[0]) &&
|
|
(h0i[1] == h1i[1]) &&
|
|
(h0i[2] == h1i[2]) &&
|
|
(h0i[3] == h1i[3]) &&
|
|
(h0i[4] == h1i[4]);
|
|
}
|
|
|
|
#endif // RIPEMD160_H
|