Displaying 1 result from an estimated 1 matches for "pwd_md5".
2004 Aug 09
1
[PATCH] RPA authentication mechanism
...t.h"
+#include "randgen.h"
+#include "buffer.h"
+#include "hostpid.h"
+#include "hex-binary.h"
+#include "md5.h"
+
+struct rpa_auth_request {
+ struct auth_request auth_request;
+
+ pool_t pool;
+
+ int phase;
+
+ /* cached: */
+ unsigned char *pwd_md5;
+ size_t service_len;
+ const unsigned char *service_ucs2be;
+ size_t username_len;
+ const unsigned char *username_ucs2be;
+ size_t realm_len;
+ const unsigned char *realm_ucs2be;
+
+ /* requested: */
+ unsigned char *service_challenge;
+ unsigned char *service_timestamp;
+
+ /* received: */
+ un...