X-Git-Url: http://www.average.org/gitweb/?p=pam_pcsc_cr.git;a=blobdiff_plain;f=crypto.h;h=ad4cf63d2e00cb577bea3171c6072346742edf31;hp=06d7cd5be72f9001e227f5e47da10bad54b554c6;hb=9b697bd4732dad5e1d105623f3a4480a1e6b79f0;hpb=740b870a7a4d1936991d856f5427e4c10c2c849a diff --git a/crypto.h b/crypto.h index 06d7cd5..ad4cf63 100644 --- a/crypto.h +++ b/crypto.h @@ -2,6 +2,7 @@ #define _CRYPTO_H int select_crypto_if(int ifno); +const char *crypto_init(int ifno); unsigned long encrypt(void *key, int keylen, void *pt, void *ct, int tlen); unsigned long decrypt(void *key, int keylen, void *ct, void *pt, int tlen); unsigned long hash(void *pt, int tlen, void *tag, int *taglen); @@ -9,4 +10,7 @@ unsigned long hmac(void *key, int keylen, void *pt, int tlen, void *tag, int *taglen); const char *crypto_errstr(unsigned long err); +#define HASHSIZE 20 +#define CBLKSIZE 16 + #endif