X-Git-Url: http://www.average.org/gitweb/?p=pam_pcsc_cr.git;a=blobdiff_plain;f=authobj.h;h=4c931969e182d08d23797368a7aaa2d8ba4121ad;hp=8478d95ef4680a5228d0e72dc8b8fbbba3c33d61;hb=b7d64e8a15a3a652d0844596307b787bc1711fa4;hpb=2961e53fa16c04cbb2e90015d68a0b9454c2edd6 diff --git a/authobj.h b/authobj.h index 8478d95..4c93196 100644 --- a/authobj.h +++ b/authobj.h @@ -1,15 +1,29 @@ #ifndef _AUTHOBJ_H #define _AUTHOBJ_H -int make_challenge(const char *id, const char *pass, const char *nonce, - unsigned char *challenge, int *challengesize); -int make_authobj(const char *id, const char *pass, const char *nonce, +#define AUTHCHUNKSIZE 20 + +struct _auth_chunk { + const char *err; + unsigned char data[AUTHCHUNKSIZE]; +}; + +struct _auth_obj { + unsigned char *buffer; /* to be free()'d if not NULL */ + const char *err; /* non-NULL if failed */ + unsigned char *data; + int datasize; + unsigned char *payload; + int paylsize; +}; + +/* Construct new or repack old authobj, return payload */ +struct _auth_obj authobj(const char *userid, const char *password, + const char *oldnonce, const char *newnonce, const unsigned char *secret, const int secsize, const unsigned char *payload, const int paysize, - unsigned char *buffer, int *bufsize); -int parse_authobj(const unsigned char *key, const int keysize, - const unsigned char *buffer, const int bufsize, - unsigned char *secret, int *secsize, - unsigned char *payload, int *paysize); + const unsigned char *ablob, const int blobsize, + struct _auth_chunk (*fetch_key)(const unsigned char *chal, + const int csize)); #endif