diff options
author | Dan McGee <dan@archlinux.org> | 2011-08-12 03:15:15 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-08-15 19:11:55 +0200 |
commit | ebb2e36cc4c40d11689a44a2503df40fa96e8fc1 (patch) | |
tree | aa75da8cd9fc082b7b5278ed783bb8ff98f818f9 /lib/libalpm/package.h | |
parent | 31f2e0cba3281660a2a3ffc6f902a7019cb4699b (diff) | |
download | pacman-ebb2e36cc4c40d11689a44a2503df40fa96e8fc1.tar.gz pacman-ebb2e36cc4c40d11689a44a2503df40fa96e8fc1.tar.xz |
Load and allow access to sha256sum
This adds a field in the package struct for this checksum type as well
as allowing access via the API to it. The frontend is now able to
display any read value. Note that this does not implement any use or
verification of the value internally.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib/libalpm/package.h')
-rw-r--r-- | lib/libalpm/package.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/libalpm/package.h b/lib/libalpm/package.h index d19d8332..b60bbf76 100644 --- a/lib/libalpm/package.h +++ b/lib/libalpm/package.h @@ -55,6 +55,7 @@ struct pkg_operations { time_t (*get_installdate) (alpm_pkg_t *); const char *(*get_packager) (alpm_pkg_t *); const char *(*get_md5sum) (alpm_pkg_t *); + const char *(*get_sha256sum) (alpm_pkg_t *); const char *(*get_arch) (alpm_pkg_t *); off_t (*get_size) (alpm_pkg_t *); off_t (*get_isize) (alpm_pkg_t *); @@ -100,6 +101,7 @@ struct __alpm_pkg_t { char *url; char *packager; char *md5sum; + char *sha256sum; char *base64_sig; char *arch; |