crypt: Use int8 instead of int.
This commit is contained in:
@@ -28,7 +28,7 @@
|
|||||||
#define CRYPT_OUTPUT_BYTES (6 + 64 + 1 + 64 + 1)
|
#define CRYPT_OUTPUT_BYTES (6 + 64 + 1 + 64 + 1)
|
||||||
|
|
||||||
static const char* kHexAlphabet = "0123456789abcdef";
|
static const char* kHexAlphabet = "0123456789abcdef";
|
||||||
static const int kHexLookup[] = {
|
static const int8 kHexLookup[] = {
|
||||||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||||||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||||||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 1, 2, 3,
|
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 1, 2, 3,
|
||||||
|
|||||||
Reference in New Issue
Block a user