颠覆校验和算法

发布于 2024-12-05 03:48:26 字数 59 浏览 0 评论 0原文

Subversion 使用哪些算法(SHA1、MD5...)来检测数据是否已损坏? (例如由于磁盘故障)

Which algorithms (SHA1, MD5...) does the Subversion use for detecting that data are not corrupted? (e.g. by a disk fault)

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

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

发布评论

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

评论(2

因为看清所以看轻 2024-12-12 03:48:26

如果您查看 SVN 1.6 源代码,您会发现支持MD5 和 SHA-1 的哈希函数都可以在源代码中找到。看一下chacksum.c 文件和以下函数:

svn_checksum_t *
svn_checksum_create(svn_checksum_kind_t kind,
                    apr_pool_t *pool)
{
  svn_checksum_t *checksum;

  switch (kind)
    {
      case svn_checksum_md5:
      case svn_checksum_sha1:
        checksum = apr_pcalloc(pool, sizeof(*checksum) + DIGESTSIZE(kind));
        checksum->digest = (unsigned char *)checksum + sizeof(*checksum);
        checksum->kind = kind;
        return checksum;

      default:
        return NULL;
    }
}

If you take a look at SVN 1.6 source code, you'll find that the support for both MD5 and SHA-1 hash functions is available in source code. Take a look at chacksum.c file and the following function:

svn_checksum_t *
svn_checksum_create(svn_checksum_kind_t kind,
                    apr_pool_t *pool)
{
  svn_checksum_t *checksum;

  switch (kind)
    {
      case svn_checksum_md5:
      case svn_checksum_sha1:
        checksum = apr_pcalloc(pool, sizeof(*checksum) + DIGESTSIZE(kind));
        checksum->digest = (unsigned char *)checksum + sizeof(*checksum);
        checksum->kind = kind;
        return checksum;

      default:
        return NULL;
    }
}
梦里梦着梦中梦 2024-12-12 03:48:26

对于当前版本 (1.8.x),svn info 显示的校验和是 SHA-1,即 sha1sum {file} 应与 svn info< 中的校验和匹配/code> 如果文件未被修改。

For the current version (1.8.x) the checksum displayed with svn info is SHA-1, i.e. sha1sum {file} should match the checksum in svn info if the file has not been modified.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文