You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

6 lines
529 B

  1. unsigned hex_to_base64(const char* hex_buff, char* base64_buff, unsigned hex_buff_len );
  2. int base64_to_hex(const unsigned char* const i_string, int i_string_len, unsigned char* o_hex_array );
  3. void convert_string_to_hex(const char* const iArray, const unsigned iArrayLen, unsigned char* oHexArray);
  4. void convert_hex_to_string(const unsigned char* const iHexArray, unsigned iHexArrayLen, char* oStringBuf );
  5. void xor_strings(const char* const iLeftString, const char* const iRightString, unsigned char* oXorArray);
  6. int c2b(char T);