summaryrefslogtreecommitdiff
path: root/beecrypt/sha256.h
diff options
context:
space:
mode:
authorjbj <devnull@localhost>2001-09-19 16:16:15 +0000
committerjbj <devnull@localhost>2001-09-19 16:16:15 +0000
commit02c1189d5951c70f632482fc0a674af35e9ea15d (patch)
tree5d8020b8d3fdca7f57d27097cbb6c44aa91e2c70 /beecrypt/sha256.h
parent7aea4d1e958c385d5ecd01638a3f295426ccf15c (diff)
downloadlibrpm-tizen-02c1189d5951c70f632482fc0a674af35e9ea15d.tar.gz
librpm-tizen-02c1189d5951c70f632482fc0a674af35e9ea15d.tar.bz2
librpm-tizen-02c1189d5951c70f632482fc0a674af35e9ea15d.zip
Add autogen.sh et al to build from CVS.
First pass at lclint annotations. CVS patchset: 5062 CVS date: 2001/09/19 16:16:15
Diffstat (limited to 'beecrypt/sha256.h')
-rw-r--r--beecrypt/sha256.h12
1 files changed, 8 insertions, 4 deletions
diff --git a/beecrypt/sha256.h b/beecrypt/sha256.h
index 5b1672d57..9e4751957 100644
--- a/beecrypt/sha256.h
+++ b/beecrypt/sha256.h
@@ -43,13 +43,17 @@ extern "C" {
extern BEEDLLAPI const hashFunction sha256;
BEEDLLAPI
-void sha256Process(sha256Param*);
+void sha256Process(sha256Param* p)
+ /*@modifies p @*/;
BEEDLLAPI
-int sha256Reset (sha256Param*);
+int sha256Reset (sha256Param* p)
+ /*@modifies p @*/;
BEEDLLAPI
-int sha256Update (sha256Param*, const byte*, int);
+int sha256Update (sha256Param* p, const byte* data, int size)
+ /*@modifies p @*/;
BEEDLLAPI
-int sha256Digest (sha256Param*, uint32*);
+int sha256Digest (sha256Param* p, uint32* data)
+ /*@modifies p, data @*/;
#ifdef __cplusplus
}