mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-06 04:01:44 +00:00
Loader: Fix type definitions in picosha2.hpp
This commit is contained in:
parent
e443b625ec
commit
195528adc6
1 changed files with 2 additions and 2 deletions
|
@ -37,8 +37,8 @@ THE SOFTWARE.
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
namespace picosha2 {
|
namespace picosha2 {
|
||||||
typedef unsigned long word_t;
|
typedef uint32_t word_t;
|
||||||
typedef unsigned char byte_t;
|
typedef uint8_t byte_t;
|
||||||
|
|
||||||
static const size_t k_digest_size = 32;
|
static const size_t k_digest_size = 32;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue