diff options
Diffstat (limited to 'beecrypt/dlkp.h')
-rw-r--r-- | beecrypt/dlkp.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/beecrypt/dlkp.h b/beecrypt/dlkp.h index a2e316c0a..69c574f47 100644 --- a/beecrypt/dlkp.h +++ b/beecrypt/dlkp.h @@ -56,17 +56,17 @@ extern "C" { #endif BEECRYPTAPI -int dlkp_pPair(dlkp_p*, randomGeneratorContext*, const dldp_p*) - /*@*/; +int dlkp_pPair(dlkp_p* kp, randomGeneratorContext* rgc, const dldp_p* param) + /*@modifies kp @*/; BEECRYPTAPI -int dlkp_pInit(dlkp_p*) - /*@*/; +int dlkp_pInit(dlkp_p* kp) + /*@modifies kp @*/; BEECRYPTAPI -int dlkp_pFree(dlkp_p*) - /*@*/; +int dlkp_pFree(dlkp_p* kp) + /*@modifies kp @*/; BEECRYPTAPI -int dlkp_pCopy(dlkp_p*, const dlkp_p*) - /*@*/; +int dlkp_pCopy(dlkp_p* dst, const dlkp_p* src) + /*@modifies dst @*/; #ifdef __cplusplus } |