0

ascii16 バイトの文字列を 16 バイトの 16 進整数に変換したいと考えています。親切に助けてください。これが私のコードです:

uint stringToByteArray(char *str,uint **array)
{

    uint i, len=strlen(str) >> 1;

    *array=(uint *)malloc(len*sizeof(uint));

    //Conversion of str (string) into *array (hexadecimal)

    return len;

}
4

2 に答える 2

0

16 文字の長さのC-「文字列」は 16バイトです!

「バイト」配列 (16 エントリの長さ) に変換するには、次のようにします。

#include <unistd.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>

/* Copies all characters of str into a freshly allocated array pointed to by *parray. */
/* Returns the number of characters bytes copied and -1 on error. Sets errno accordingly. */ 
size_t stringToByteArray(const char * str, uint8_t **parray)
{
  if (NULL == str)
  {
    errno = EINVAL;
    return -1;
  }

  {
    size_t size = strlen(str);

    *parray = malloc(size * sizeof(**parray));
    if (NULL == *parray)
    {
      errno = ENOMEM;
      return -size;
    }

    for (size_t s = 0; s < size; ++s)
    {
      (*parray)[s] = str[s];
    }

    return size;
  }
}

int main()
{
  char str[] = "this is 16 bytes";

  uint8_t * array = NULL;
  ssize_t size = stringToByteArray(str, &array);
  if (-1 == size)
  {
    perror("stringToByteArray() failed");
    return EXIT_FAILURE;
  }

  /* Do what you like with array. */

  free(array);

  return EXIT_SUCCESS;
}
于 2013-06-23T19:11:14.570 に答える