鱼C论坛

 找回密码
 立即注册
查看: 2621|回复: 28

[已解决]【C语言】在linux中进行MD5加密的例子问题

[复制链接]
发表于 2019-8-16 13:44:33 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
为什么编译运行test文件的时候会出现这个。。 微信图片编辑_20190816133952.jpg
看网上说的是编译器的问题?还是文件串联问题。。。怎么解决 谢谢大佬们!
最佳答案
2019-8-16 15:07:06
看出问题来了吗?

1.png
小甲鱼最新课程 -> https://ilovefishc.com
回复

使用道具 举报

发表于 2019-8-16 13:53:19 | 显示全部楼层
你的md5.a是不是同一个编译器编出来的?不兼容就会这样咯, 你可以readelf -h  md5.a 看看
小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2019-8-16 14:00:29 | 显示全部楼层
Krant5 发表于 2019-8-16 13:53
你的md5.a是不是同一个编译器编出来的?不兼容就会这样咯, 你可以readelf -h  md5.a 看看

都是用vi编辑的 用了readelf -h mad5.a 后他提示
readelf: Error: Not an ELF file - it has the wrong magic bytes at the start
readelf: Error: md5.a: Failed to read file header
小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2019-8-16 14:09:24 | 显示全部楼层
437969418 发表于 2019-8-16 14:00
都是用vi编辑的 用了readelf -h mad5.a 后他提示
readelf: Error: Not an ELF file - it has the wrong  ...

输入这个看看
  1. file md5.a
复制代码
小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2019-8-16 14:12:28 | 显示全部楼层

md5.a: ASCII C program text
小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2019-8-16 14:15:29 | 显示全部楼层
437969418 发表于 2019-8-16 14:12
md5.a: ASCII C program text

cat md5.a
小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2019-8-16 14:17:59 | 显示全部楼层
  1. #ifndef MD5_H
  2. #define MD5_H

  3. typedef struct
  4. {
  5.         unsigned int count[2];
  6.         unsigned int state[4];
  7.         unsigned char buffer[46];
  8. }MD5_CTX;

  9. #define F(x,y,z) ((x & y) | (~x & z))
  10. #define G(x,y,z) ((x & z) | (y & ~z))
  11. #define H(x,y,z) (x^y^z)
  12. #define I(x,y,z) (y ^ (x | ~z))
  13. #define ROTATE_LEFT(x,n) ((x << n) | (x >> (32-n)))
  14. #define FF(a,b,c,d,x,s,ac) \
  15. { \
  16.         a += F(b,c,d) + x + ac; \
  17.         a = ROTATE_LEFT(a,s); \
  18.         a += b; \
  19. }
  20. #define GG(a,b,c,d,x,s,ac) \
  21. { \
  22.         a += G(b,c,d) + x + ac; \
  23.         a = ROTATE_LEFT(a,s); \
  24.         a += b; \
  25. }
  26. #define HH(a,b,c,d,x,s,ac) \
  27. { \
  28.         a += H(b,c,d) + x + ac; \
  29.         a = ROTATE_LEFT(a,s); \
  30.         a += b; \
  31. }
  32. #define II(a,b,c,d,x,s,ac) \
  33. { \
  34.         a += I(b,c,d) + x + ac; \
  35.         a = ROATE_LEFT(a,s); \
  36.         a += b; \
  37. }
  38. void MD5Init(MD5_CTX *context);
  39. void MD5Upadate(MD5_CTX *context,unsigned char *input,unsigned int inputlen);
  40. void MD5Final(MD5_CTX *context,unsigned char digest[16]);
  41. void MD5Transform(unsigned int state[4],unsigned char block[64]);
  42. void MD5Encode(unsigned char *output,unsigned int *input,unsigned int len);
  43. void MD5Decode(unsigned int *output,unsigned char *input,unsigned int len);

  44. #endif
复制代码
小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2019-8-16 14:18:07 | 显示全部楼层
你是直接把C语言源文件保存成了 md5.a  ?
.a文件不是这样创建的

把md5.a改成md5.c就可以了
小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2019-8-16 14:18:43 | 显示全部楼层

这个应该改成md5.h
小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2019-8-16 14:19:30 | 显示全部楼层
小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2019-8-16 14:24:39 | 显示全部楼层

有,都手打了然后检查了。。
不过刚刚发现有个从主机移动到虚拟机的文件md5.h.gch 然后我删了
[fishc@localhost s1e30]$ ls
dds0.c  md5.h    test2.c  test4.c  test6.c  test.c
md5.c   test1.c  test3.c  test5.c  test7.c


现在编译变成:
gcc: md5.a: No such file or directory
小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2019-8-16 14:44:11 | 显示全部楼层
437969418 发表于 2019-8-16 14:24
有,都手打了然后检查了。。
不过刚刚发现有个从主机移动到虚拟机的文件md5.h.gch 然后我删了
[fishc@l ...

cat md5.c

cat md5.h
小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2019-8-16 14:45:31 | 显示全部楼层
gcc test.c md5.c
小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2019-8-16 14:55:07 | 显示全部楼层

[fishc@localhost s1e30]$ cat md5.c
  1. #include <memory.h>
  2. #include "md5.h"

  3. unsigned char PADDING[]={0x80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
  4. 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
  5. 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
  6. 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0};

  7. void MD5Init(MD5_CTX *context)
  8. {
  9.         context->count[0] = 0;
  10.         context->count[1] = 0;
  11.         context->count[0] = 0x67452301;
  12.         context->count[1] = 0xEFCDAB89;
  13.         context->count[2] = 0x98BADCFE;
  14.         context->count[3] = 0x10325476;
  15. }

  16. void MD5Update(MD5_CTX *context,unsigned char *input,unsigned int inputlen)
  17. {
  18.         unsigned int i = 0,index = 0,partlen = 0;
  19.         index = (context->count[0] >> 3) & 0x3F;
  20.         partlen = 64 - index;
  21.         context->count[0] += inputlen << 3;
  22.         if (context->count[0] < (inputlen << 3))
  23.                 context->count[1]++;
  24.         context->count[1] += inputlen >> 29;

  25.         if (inputlen >= partlen)
  26.         {
  27.                 memcpy(&context->buffer[index],input,partlen);
  28.                 MD5Transform(context->state,context->buffer);
  29.                 for (i = partlen;i+64 <= inputlen;i+=64)
  30.                         MD5Transform(context->state,&input[i]);
  31.                 index = 0;
  32.         }
  33.         else
  34.         {
  35.                 i = 0;
  36.         }
  37.         memcpy(&context->buffer[index],&input[i],inputlen-i);
  38. }

  39. void MD5Final(MD5_CTX *context,unsigned char digest[16])
  40. {
  41.         unsigned int index = 0,padlen = 0;
  42.         unsigned char bits[8];
  43.         index = (context->count[0] >> 3) & 0x3F;
  44.         padlen = (index < 56)?(56-index):(120-index);
  45.         MD5Encode(bits,context->count,8);
  46.         MD5Update(context,PADDING,padlen);
  47.         MD5Update(context,bits,8);
  48.         MD5Encode(digest,context->state,16);
  49. }

  50. void MD5Encode(unsigned char *output,unsigned int *input,unsigned int len)
  51. {
  52.         unsigned int i = 0, j = 0;
  53.         while (j < len)
  54.         {
  55.                 output[j] = input[i] & 0xFF;
  56.                 output[j+1] = (input[i] >> 8) & 0xFF;
  57.                 output[j+2] = (input[i] >> 16) & 0xFF;
  58.                 output[j+3] = (input[i] >> 24) & 0xFF;
  59.                 i++;
  60.                 j+=4;
  61.         }
  62. }

  63. void MD5Decode(unsigned int *output, unsigned char *input, unsigned int len)
  64. {
  65.         unsigned int i = 0, j = 0;
  66.         while (j < len)
  67.         {
  68.                 output[i] = (input[j]) |
  69.                         (input[j+1] << 8) |
  70.                         (input[j+2] << 16) |
  71.                         (input[j+3] << 24);
  72.                 i++;
  73.                 j+=4;
  74.         }
  75. }

  76. void MD5Transform(unsigned int state[4],unsigned char block[64])
  77. {
  78.         unsigned int a = state[0];
  79.         unsigned int b = state[1];
  80.         unsigned int c = state[2];
  81.         unsigned int d = state[3];
  82.         unsigned int x[64];
  83.         MD5Decode(x,block,64);
  84.         FF(a, b, c, d, x[ 0], 7, 0xd76aa478);/* 1 */
  85.         FF(d, a, b, c, x[ 1], 12, 0xe8c7b756);/* 2 */
  86.         FF(c, d, a, b, x[ 2], 17, 0x242070db);/* 3 */
  87.         FF(b, c, d, a, x[ 3], 22, 0xc1bdceee);/* 4 */
  88.         FF(a, b, c, d, x[ 4], 7, 0xf57c0faf);/* 5 */
  89.         FF(d, a, b, c, x[ 5], 12, 0x4787c62a);/* 6 */
  90.         FF(c, d, a, b, x[ 6], 17, 0xa8304613);/* 7 */
  91.         FF(b, c, d, a, x[ 7], 22, 0xfd469501);/* 8 */
  92.         FF(a, b, c, d, x[ 8], 7, 0x698098d8);/* 9 */
  93.         FF(d, a, b, c, x[ 9], 12, 0x8b44f7af);/* 10 */
  94.         FF(c, d, a, b, x[10], 17, 0xffff5bb1);/* 11 */
  95.         FF(b, c, d, a, x[11], 22, 0x895cd7be);/* 12 */
  96.         FF(a, b, c, d, x[12], 7, 0x6b901122);/* 13 */
  97.         FF(d, a, b, c, x[13], 12, 0xfd987193);/* 14 */
  98.         FF(c, d, a, b, x[14], 17, 0xa679438e);/* 15 */
  99.         FF(b, c, d, a, x[15], 22, 0x49b40821);/* 16 */

  100.         /* Round 2 */
  101.         GG(a, b, c, d, x[ 1], 5, 0xf61e2562); /* 17 */
  102.         GG(d, a, b, c, x[ 6], 9, 0xc040b340); /* 18 */
  103.         GG(c, d, a, b, x[11], 14, 0x265e5a51); /* 19 */
  104.         GG(b, c, d, a, x[ 0], 20, 0xe9b6c7aa); /* 20 */
  105.         GG(a, b, c, d, x[ 5], 5, 0xd62f105d); /* 21 */
  106.         GG(d, a, b, c, x[10], 9,  0x2441453); /* 22 */
  107.         GG(c, d, a, b, x[15], 14, 0xd8a1e681); /* 23 */
  108.         GG(b, c, d, a, x[ 4], 20, 0xe7d3fbc8); /* 24 */
  109.         GG(a, b, c, d, x[ 9], 5, 0x21e1cde6); /* 25 */
  110.         GG(d, a, b, c, x[14], 9, 0xc33707d6); /* 26 */
  111.         GG(c, d, a, b, x[ 3], 14, 0xf4d50d87); /* 27 */
  112.         GG(b, c, d, a, x[ 8], 20, 0x455a14ed); /* 28 */
  113.         GG(a, b, c, d, x[13], 5, 0xa9e3e905); /* 29 */
  114.         GG(d, a, b, c, x[ 2], 9, 0xfcefa3f8); /* 30 */
  115.         GG(c, d, a, b, x[ 7], 14, 0x676f02d9); /* 31 */
  116.         GG(b, c, d, a, x[12], 20, 0x8d2a4c8a); /* 32 */

  117.         /* Round 3 */
  118.         HH(a, b, c, d, x[ 5], 4, 0xfffa3942); /* 33 */
  119.         HH(d, a, b, c, x[ 8], 11, 0x8771f681); /* 34 */
  120.         HH(c, d, a, b, x[11], 16, 0x6d9d6122); /* 35 */
  121.         HH(b, c, d, a, x[14], 23, 0xfde5380c); /* 36 */
  122.         HH(a, b, c, d, x[ 1], 4, 0xa4beea44); /* 37 */
  123.         HH(d, a, b, c, x[ 4], 11, 0x4bdecfa9); /* 38 */
  124.         HH(c, d, a, b, x[ 7], 16, 0xf6bb4b60); /* 39 */
  125.         HH(b, c, d, a, x[10], 23, 0xbebfbc70); /* 40 */
  126.         HH(a, b, c, d, x[13], 4, 0x289b7ec6); /* 41 */
  127.         HH(d, a, b, c, x[ 0], 11, 0xeaa127fa); /* 42 */
  128.         HH(c, d, a, b, x[ 3], 16, 0xd4ef3085); /* 43 */
  129.         HH(b, c, d, a, x[ 6], 23,  0x4881d05); /* 44 */
  130.         HH(a, b, c, d, x[ 9], 4, 0xd9d4d039); /* 45 */
  131.         HH(d, a, b, c, x[12], 11, 0xe6db99e5); /* 46 */
  132.         HH(c, d, a, b, x[15], 16, 0x1fa27cf8); /* 47 */
  133.         HH(b, c, d, a, x[ 2], 23, 0xc4ac5665); /* 48 */

  134.         /* Round 4 */
  135.         II(a, b, c, d, x[ 0], 6, 0xf4292244); /* 49 */
  136.         II(d, a, b, c, x[ 7], 10, 0x432aff97); /* 50 */
  137.         II(c, d, a, b, x[14], 15, 0xab9423a7); /* 51 */
  138.         II(b, c, d, a, x[ 5], 21, 0xfc93a039); /* 52 */
  139.         II(a, b, c, d, x[12], 6, 0x655b59c3); /* 53 */
  140.         II(d, a, b, c, x[ 3], 10, 0x8f0ccc92); /* 54 */
  141.         II(c, d, a, b, x[10], 15, 0xffeff47d); /* 55 */
  142.         II(b, c, d, a, x[ 1], 21, 0x85845dd1); /* 56 */
  143.         II(a, b, c, d, x[ 8], 6, 0x6fa87e4f); /* 57 */
  144.         II(d, a, b, c, x[15], 10, 0xfe2ce6e0); /* 58 */
  145.         II(c, d, a, b, x[ 6], 15, 0xa3014314); /* 59 */
  146.         II(b, c, d, a, x[13], 21, 0x4e0811a1); /* 60 */
  147.         II(a, b, c, d, x[ 4], 6, 0xf7537e82); /* 61 */
  148.         II(d, a, b, c, x[11], 10, 0xbd3af235); /* 62 */
  149.         II(c, d, a, b, x[ 2], 15, 0x2ad7d2bb); /* 63 */
  150.         II(b, c, d, a, x[ 9], 21, 0xeb86d391); /* 64 */
  151.         state[0] += a;
  152.         state[1] += b;
  153.         state[2] += c;
  154.         state[3] += d;
  155. }
复制代码

[fishc@localhost s1e30]$ cat md5.h
  1. #ifndef MD5_H
  2. #define MD5_H

  3. typedef struct
  4. {
  5.         unsigned int count[2];
  6.         unsigned int state[4];
  7.         unsigned char buffer[64];
  8. }MD5_CTX;

  9. #define F(x,y,z) ((x & y) | (~x & z))
  10. #define G(x,y,z) ((x & z) | (y & ~z))
  11. #define H(x,y,z) (x^y^z)
  12. #define I(x,y,z) (y ^ (x | ~z))
  13. #define ROTATE_LEFT(x,n) ((x << n) | (x >> (32-n)))
  14. #define FF(a,b,c,d,x,s,ac) \
  15. { \
  16.         a += F(b,c,d) + x + ac; \
  17.         a = ROTATE_LEFT(a,s); \
  18.         a += b; \
  19. }
  20. #define GG(a,b,c,d,x,s,ac) \
  21. { \
  22.         a += G(b,c,d) + x + ac; \
  23.         a = ROTATE_LEFT(a,s); \
  24.         a += b; \
  25. }
  26. #define HH(a,b,c,d,x,s,ac) \
  27. { \
  28.         a += H(b,c,d) + x + ac; \
  29.         a = ROTATE_LEFT(a,s); \
  30.         a += b; \
  31. }
  32. #define II(a,b,c,d,x,s,ac) \
  33. { \
  34.         a += I(b,c,d) + x + ac; \
  35.         a = ROATE_LEFT(a,s); \
  36.         a += b; \
  37. }
  38. void MD5Init(MD5_CTX *context);
  39. void MD5Upadate(MD5_CTX *context,unsigned char *input,unsigned int inputlen);
  40. void MD5Final(MD5_CTX *context,unsigned char digest[16]);
  41. void MD5Transform(unsigned int state[4],unsigned char block[64]);
  42. void MD5Encode(unsigned char *output,unsigned int *input,unsigned int len);
  43. void MD5Decode(unsigned int *output,unsigned char *input,unsigned int len);

  44. #endif
复制代码

[fishc@localhost s1e30]$ gcc test.c md5.c
/tmp/ccnsF6rr.o: In function `MD5Transform':
md5.c:(.text+0xc45): undefined reference to `ROATE_LEFT'
md5.c:(.text+0xc82): undefined reference to `ROATE_LEFT'
md5.c:(.text+0xcbf): undefined reference to `ROATE_LEFT'
md5.c:(.text+0xcfc): undefined reference to `ROATE_LEFT'
md5.c:(.text+0xd39): undefined reference to `ROATE_LEFT'
/tmp/ccnsF6rr.o:md5.c:(.text+0xd76): more undefined references to `ROATE_LEFT' follow
collect2: ld returned 1 exit status

小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2019-8-16 15:02:32 | 显示全部楼层

现在cat md5.a 变成 cat: md5.a: No such file or directory 了……
小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2019-8-16 15:07:06 | 显示全部楼层    本楼为最佳答案   
看出问题来了吗?

1.png
小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2019-8-16 15:15:05 | 显示全部楼层
人造人 发表于 2019-8-16 15:07
看出问题来了吗?

!!看到了!谢谢!不过我 gcc test.c md5.a && ./a.out 怎么还是
gcc: md5.a: No such file or directory

gcc test.c md5.c 没问题了。。
小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2019-8-16 15:24:07 | 显示全部楼层
人造人 发表于 2019-8-16 15:07
看出问题来了吗?

噢噢!!可以了!谢谢你!!
小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2019-8-16 15:29:56 | 显示全部楼层
人造人 发表于 2019-8-16 15:07
看出问题来了吗?

能在小小问一下,.a文件是怎么生成的吗
小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2019-8-16 15:41:07 | 显示全部楼层
人造人 发表于 2019-8-16 15:07
看出问题来了吗?

好像还是不行。我刚刚打错了编译运行的是
gcc test.c md5.c && ./a.out
所以运行成功了出了随机的数字,
gcc test.c md5.a && ./a.out还是显示gcc: md5.a: No such file or directory该咋办……/哭唧唧
小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-7-4 23:32

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表