diff options
author | jbj <devnull@localhost> | 2002-01-18 22:51:30 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 2002-01-18 22:51:30 +0000 |
commit | c74fa2496545a34868e93ab830b304033781cde3 (patch) | |
tree | b02775ad932ceb3dd34c99b157e5b25e3506accf /beecrypt/sha256.c | |
parent | 3ef59667d3d4c6e2c4a64d53dc60472abb607e26 (diff) | |
download | librpm-tizen-c74fa2496545a34868e93ab830b304033781cde3.tar.gz librpm-tizen-c74fa2496545a34868e93ab830b304033781cde3.tar.bz2 librpm-tizen-c74fa2496545a34868e93ab830b304033781cde3.zip |
- missing key(s) on keyring when verifying a signature is now an error.
- remove dependency whiteout.
- splint fiddles.
CVS patchset: 5255
CVS date: 2002/01/18 22:51:30
Diffstat (limited to 'beecrypt/sha256.c')
-rw-r--r-- | beecrypt/sha256.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/beecrypt/sha256.c b/beecrypt/sha256.c index 329f3c60d..437fb7018 100644 --- a/beecrypt/sha256.c +++ b/beecrypt/sha256.c @@ -232,7 +232,6 @@ static void sha256Finish(register sha256Param *p) while (p->offset++ < 56) *(ptr++) = 0; - /*@-shiftsigned@*/ /* p->length is uint64 */ #if WORDS_BIGENDIAN p->data[14] = ((uint32)(p->length >> 29)); p->data[15] = ((uint32)((p->length << 3) & 0xffffffff)); @@ -240,7 +239,6 @@ static void sha256Finish(register sha256Param *p) p->data[14] = swapu32((uint32)(p->length >> 29)); p->data[15] = swapu32((uint32)((p->length << 3) & 0xffffffff)); #endif - /*@=shiftsigned@*/ sha256Process(p); p->offset = 0; |