mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
87 lines
1.9 KiB
C
87 lines
1.9 KiB
C
/*
|
|
Copyright 2020 Raphael Beck
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
#include "include/util.h"
|
|
#include <ctype.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int l8w8jwt_hexstr2bin(const char* hexstr, const size_t hexstr_length, unsigned char* output, const size_t output_size, size_t* output_length)
|
|
{
|
|
if (hexstr == NULL || output == NULL || hexstr_length == 0)
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
const size_t hl = hexstr[hexstr_length - 1] ? hexstr_length : hexstr_length - 1;
|
|
|
|
if (hl % 2 != 0)
|
|
{
|
|
return 2;
|
|
}
|
|
|
|
const size_t final_length = hl / 2;
|
|
|
|
if (output_size < final_length + 1)
|
|
{
|
|
return 3;
|
|
}
|
|
|
|
for (size_t i = 0, ii = 0; ii < final_length; i += 2, ii++)
|
|
{
|
|
output[ii] = (hexstr[i] % 32 + 9) % 25 * 16 + (hexstr[i + 1] % 32 + 9) % 25;
|
|
}
|
|
|
|
output[final_length] = '\0';
|
|
|
|
if (output_length != NULL)
|
|
{
|
|
*output_length = final_length;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
int l8w8jwt_strncmpic(const char* str1, const char* str2, size_t n)
|
|
{
|
|
size_t cmp = 0;
|
|
int ret = -1;
|
|
|
|
if (str1 == NULL || str2 == NULL)
|
|
{
|
|
return ret;
|
|
}
|
|
|
|
while ((*str1 || *str2) && cmp < n)
|
|
{
|
|
if ((ret = tolower((int)(*str1)) - tolower((int)(*str2))) != 0)
|
|
{
|
|
break;
|
|
}
|
|
|
|
cmp++;
|
|
str1++;
|
|
str2++;
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
#ifdef __cplusplus
|
|
} // extern "C"
|
|
#endif |