在 C 中使用 sprintf 复制十六进制值

发布于 2024-11-07 19:38:30 字数 553 浏览 1 评论 0原文

从下面的代码中,我试图将结果 var 的结果获取到字符串 var 中,但到目前为止没有成功。 怎么了?为什么我不能得到正确的结果?如果直接打印就可以了...

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <openssl/md5.h>

char *string = "stelios";
unsigned char s[MD5_DIGEST_LENGTH];
int main()
{
 int i;
 unsigned char result[MD5_DIGEST_LENGTH];

  MD5(string, strlen(string), result);

  // output
  for(i = 0; i < MD5_DIGEST_LENGTH; i++){
   sprintf(s,"%0x", result[i]);//
   printf("%x",s[i]);
  }
   printf("\n%x",s);

   return EXIT_SUCCESS;
  }

From the code below I am trying to get the result of the result var into a string var but no success so far.
What's wrong? Why I can't get the right result? If I print this directly it's ok...

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <openssl/md5.h>

char *string = "stelios";
unsigned char s[MD5_DIGEST_LENGTH];
int main()
{
 int i;
 unsigned char result[MD5_DIGEST_LENGTH];

  MD5(string, strlen(string), result);

  // output
  for(i = 0; i < MD5_DIGEST_LENGTH; i++){
   sprintf(s,"%0x", result[i]);//
   printf("%x",s[i]);
  }
   printf("\n%x",s);

   return EXIT_SUCCESS;
  }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

葬心 2024-11-14 19:38:30

试试这个:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <openssl/md5.h>

char *string = "stelios";
char s[MD5_DIGEST_LENGTH * 2 + 1] = "";
int main()
{
  int i;
  unsigned char result[MD5_DIGEST_LENGTH];

  MD5(string, strlen(string), result);

  // output
  for(i = 0; i < MD5_DIGEST_LENGTH; i++){
    char temp[3];
    sprintf(temp, "%02x", result[i]);
    strcat(s, temp);
  }
  printf("Final Hex String: %s",s);

  return EXIT_SUCCESS;
}

Try this:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <openssl/md5.h>

char *string = "stelios";
char s[MD5_DIGEST_LENGTH * 2 + 1] = "";
int main()
{
  int i;
  unsigned char result[MD5_DIGEST_LENGTH];

  MD5(string, strlen(string), result);

  // output
  for(i = 0; i < MD5_DIGEST_LENGTH; i++){
    char temp[3];
    sprintf(temp, "%02x", result[i]);
    strcat(s, temp);
  }
  printf("Final Hex String: %s",s);

  return EXIT_SUCCESS;
}
小傻瓜 2024-11-14 19:38:30

每次调用 sprintf 时,它都会将格式化值写入到 s 的开头,覆盖上一次调用中写入的内容。您需要执行类似 sprintf(s + i*2, "%02x", result[i]); 的操作(并将 s 的长度更改为 2*MD5_DIGEST_LENGTH+1)。

Each time sprintf is called, it writes the formatted value to the beginning of s, overwriting whatever was written there in the previous call. You need to do something like sprintf(s + i*2, "%02x", result[i]); (and change the length of s to 2*MD5_DIGEST_LENGTH+1).

書生途 2024-11-14 19:38:30

这是我用过的:

  char *digit="0123456789abcdef";
  char hex[2*MD5_DIGEST_LENGTH+1],*h;
  int i;
  for (h=hex,i=0; i<N; i++)
  {
   *h++=digit[digest[i] >> 4];
   *h++=digit[digest[i] & 0x0F];
  }
  *h='\0';

Here's what I've used:

  char *digit="0123456789abcdef";
  char hex[2*MD5_DIGEST_LENGTH+1],*h;
  int i;
  for (h=hex,i=0; i<N; i++)
  {
   *h++=digit[digest[i] >> 4];
   *h++=digit[digest[i] & 0x0F];
  }
  *h='\0';
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文