diff options
author | jbj <devnull@localhost> | 2001-09-23 12:09:48 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 2001-09-23 12:09:48 +0000 |
commit | 0f7777894493527a5672d0ce09c4855e2b69495f (patch) | |
tree | af5511490946ca59d1abc0ae69696437bd73eac8 /beecrypt/blockmode.h | |
parent | 1eef0782f60f9d8d80be273ace982ad4c2a56d98 (diff) | |
download | librpm-tizen-0f7777894493527a5672d0ce09c4855e2b69495f.tar.gz librpm-tizen-0f7777894493527a5672d0ce09c4855e2b69495f.tar.bz2 librpm-tizen-0f7777894493527a5672d0ce09c4855e2b69495f.zip |
More lclint annotations, now at the strict level with a complete program.
CVS patchset: 5069
CVS date: 2001/09/23 12:09:48
Diffstat (limited to 'beecrypt/blockmode.h')
-rw-r--r-- | beecrypt/blockmode.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/beecrypt/blockmode.h b/beecrypt/blockmode.h index 2dffffa0c..2d825adf9 100644 --- a/beecrypt/blockmode.h +++ b/beecrypt/blockmode.h @@ -44,7 +44,7 @@ extern "C" { * @return 0 on success, -1 on failure */ BEEDLLAPI -int blockEncrypt(const blockCipher* bc, blockCipherParam* bp, cipherMode mode, int blocks, uint32* dst, const uint32* src) +int blockEncrypt(const blockCipher* bc, blockCipherParam* bp, cipherMode mode, int blocks, /*@out@*/ uint32* dst, const uint32* src) /*@modifies bp, dst @*/; /** @@ -57,7 +57,7 @@ int blockEncrypt(const blockCipher* bc, blockCipherParam* bp, cipherMode mode, i * @return 0 on success, -1 on failure */ BEEDLLAPI -int blockDecrypt(const blockCipher* bc, blockCipherParam* bp, cipherMode mode, int blocks, uint32* dst, const uint32* src) +int blockDecrypt(const blockCipher* bc, blockCipherParam* bp, cipherMode mode, int blocks, /*@out@*/ uint32* dst, const uint32* src) /*@modifies bp, dst @*/; #ifdef __cplusplus |