diff options
author | Timo Teräs <timo.teras@iki.fi> | 2018-10-30 18:26:10 +0200 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2018-10-30 18:26:10 +0200 |
commit | f38d1f74af7a5ef0ccee2029be0d8036b9020f1a (patch) | |
tree | 3dfe3fe5e58ea50101af3301ac598f3d5d7012fb /src | |
parent | beab8545ebb2898a2beb157a4d9424ebddf3e26f (diff) | |
download | apk-tools-f38d1f74af7a5ef0ccee2029be0d8036b9020f1a.tar.gz apk-tools-f38d1f74af7a5ef0ccee2029be0d8036b9020f1a.tar.bz2 apk-tools-f38d1f74af7a5ef0ccee2029be0d8036b9020f1a.tar.xz apk-tools-f38d1f74af7a5ef0ccee2029be0d8036b9020f1a.zip |
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.
Diffstat (limited to 'src')
-rw-r--r-- | src/io.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |