break;
}
}
+
+/* Convert hex string to data. Each hex number must have two characters. */
+
+SilcBool silc_hex2data(const char *hex, unsigned char *data,
+ SilcUInt32 data_size, SilcUInt32 *ret_data_len)
+{
+ char *cp = (char *)hex;
+ unsigned char l, h;
+ int i;
+
+ if (data_size < strlen(hex) / 2)
+ return FALSE;
+
+ for (i = 0; i < strlen(hex) / 2; i++) {
+ h = *cp++;
+ l = *cp++;
+
+ h -= h < 'A' ? '0' : 'A' - 10;
+ l -= l < 'A' ? '0' : 'A' - 10;
+
+ data[i] = (h << 4) | (l & 0xf);
+ }
+
+ if (ret_data_len)
+ *ret_data_len = i;
+
+ SILC_LOG_HEXDUMP(("len %d", i), data, i);
+
+ return TRUE;
+}
+
+/* Converts binary data to HEX string */
+
+SilcBool silc_data2hex(const unsigned char *data, SilcUInt32 data_len,
+ char *hex, SilcUInt32 hex_size)
+{
+ unsigned char l, h;
+ char *cp = hex;
+ int i;
+
+ if (hex_size - 1 < data_len * 2)
+ return FALSE;
+
+ memset(hex, 0, hex_size);
+
+ for (i = 0; i < data_len; i++) {
+ l = data[i];
+ h = l >> 4;
+ l &= 0xf;
+
+ *cp++ = h + (h > 9 ? 'A' - 10 : '0');
+ *cp++ = l + (l > 9 ? 'A' - 10 : '0');
+ }
+
+ SILC_LOG_DEBUG(("HEX string: '%s'", hex));
+
+ return TRUE;
+}
void silc_hexdump(const unsigned char *data, SilcUInt32 data_len,
FILE *output);
+/****f* silcutil/SilcUtilAPI/silc_hex2data
+ *
+ * SYNOPSIS
+ *
+ * SilcBool silc_hex2data(const char *hex, unsigned char *data,
+ * SilcUInt32 data_size, SilcUInt32 *ret_data_len);
+ *
+ * DESCRIPTION
+ *
+ * Converts HEX character string to binary data. Each HEX numbers must
+ * have two characters in the `hex' string.
+ *
+ ***/
+SilcBool silc_hex2data(const char *hex, unsigned char *data,
+ SilcUInt32 data_size, SilcUInt32 *ret_data_len);
+
+/****f* silcutil/SilcUtilAPI/silc_data2hex
+ *
+ * SYNOPSIS
+ *
+ * SilcBool silc_data2hex(const unsigned char *data, SilcUInt32 data_len,
+ * char *hex, SilcUInt32 hex_size);
+ *
+ * DESCRIPTION
+ *
+ * Converts binary data to HEX string. This NULL terminates the `hex'
+ * buffer automatically.
+ *
+ ***/
+SilcBool silc_data2hex(const unsigned char *data, SilcUInt32 data_len,
+ char *hex, SilcUInt32 hex_size);
+
#endif /* !SILCUTIL_H */
{
SilcBool success = FALSE;
unsigned char *s1, *s2, *s3, *s4;
- int l, opt;
+ unsigned char t[16];
+ char h[32 + 1];
+ int l, opt, i;
+ SilcUInt32 len;
- while ((opt = getopt(argc, argv, "hVd")) != EOF) {
+ while ((opt = getopt(argc, argv, "hVd:")) != EOF) {
switch(opt) {
case 'h':
printf("usage: test_silcstrutil\n");
goto err;
SILC_LOG_DEBUG(("Regex not found (Ok)"));
+ /* HEX to data, data to HEX tests */
+ for (i = 0; i < sizeof(t); i++)
+ t[i] = i;
+ silc_data2hex(t, sizeof(t), h, sizeof(h));
+ silc_hex2data(h, t, sizeof(t), &len);
+ silc_snprintf(h, sizeof(h), "010203ffabdef9ab");
+ silc_hex2data(h, t, sizeof(t), &len);
+ silc_data2hex(t, sizeof(t), h, sizeof(h));
+
success = TRUE;
err: