X-Git-Url: http://git.silcnet.org/gitweb/?a=blobdiff_plain;f=lib%2Fsilccrypt%2Fsilchmac.h;h=7b853d91092ddb46757e08ce9222dd5814aca4fd;hb=cdedc07c65bab8467f6f5b1ef4b38982c2c77571;hp=290fbed134db617114a976c5a43f4144a3694f61;hpb=2878ba34b8d864f89cfb785448e95cdd42297ee0;p=silc.git diff --git a/lib/silccrypt/silchmac.h b/lib/silccrypt/silchmac.h index 290fbed1..7b853d91 100644 --- a/lib/silccrypt/silchmac.h +++ b/lib/silccrypt/silchmac.h @@ -150,7 +150,8 @@ bool silc_hmac_unregister_all(void); * * SYNOPSIS * - * bool silc_hmac_alloc(char *name, SilcHash hash, SilcHmac *new_hmac); + * bool silc_hmac_alloc(const char *name, SilcHash hash, + * SilcHmac *new_hmac); * * DESCRIPTION * @@ -161,7 +162,7 @@ bool silc_hmac_unregister_all(void); * FALSE if such HMAC does not exist. * ***/ -bool silc_hmac_alloc(char *name, SilcHash hash, SilcHmac *new_hmac); +bool silc_hmac_alloc(const char *name, SilcHash hash, SilcHmac *new_hmac); /****f* silccrypt/SilcHMACAPI/silc_hmac_free *