1

哈希函数从文件路径名生成哈希键的任何想法?我想用它来维护有关每个文件的信息,因为每个文件的路径都是唯一的,即使它们具有相同的文件名!

4

1 回答 1

2

您可以使用openssl哈希函数,这只是一个示例:

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

int main()
{
  int i;
  unsigned char result[MD5_DIGEST_LENGTH];
  const char *string = "path/to/file";

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

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

  return EXIT_SUCCESS;
}
于 2012-12-01T14:35:28.480 回答