fix xattr hash to be sha1

The hash type was accidentally changed in previous commit. Currently
csum->data cannot hold longer hash, so fix the hash.
cute-signatures
Timo Teräs 2018-10-30 18:26:10 +02:00
parent beab8545eb
commit f38d1f74af
1 changed files with 1 additions and 1 deletions

View File

@ -632,7 +632,7 @@ void apk_fileinfo_hash_xattr_array(struct apk_xattr_array *xattrs, const EVP_MD
qsort(xattrs->item, xattrs->num, sizeof(xattrs->item[0]), cmp_xattr);
EVP_DigestInit_ex(mdctx, EVP_sha256(), NULL);
EVP_DigestInit_ex(mdctx, EVP_sha1(), NULL);
foreach_array_item(xattr, xattrs) {
hash_len_data(mdctx, strlen(xattr->name), xattr->name);
hash_len_data(mdctx, xattr->value.len, xattr->value.ptr);