#include "sha.h"
#include <iostream.h>
#include <stdlib.h>
Go to the source code of this file.
|
| template<class T> |
| T | _rotl (T X, int n) |
| |
| long | _rotl (long X, int n) |
| |
| unsigned long | _rotl (unsigned long X, int n) |
| |
| void | memrev (char *buffer, size_t length) |
| |
◆ min
Value:
Definition at line 47 of file sha.cpp.
◆ Reverse_LONG
| #define Reverse_LONG |
( |
| a | ) |
|
Value:((a>>24)&0x000000FFL) | ((a>>8)&0x0000FF00L) | ((a<<8)&0x00FF0000L) | ((a<<24)&0xFF000000L)
Definition at line 161 of file sha.cpp.
◆ _rotl() [1/3]
| long _rotl |
( |
long | X, |
|
|
int | n ) |
|
inline |
◆ _rotl() [2/3]
◆ _rotl() [3/3]
| unsigned long _rotl |
( |
unsigned long | X, |
|
|
int | n ) |
|
inline |
◆ memrev()
| void memrev |
( |
char * | buffer, |
|
|
size_t | length ) |