OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:jpake_ctx
(Results
1 - 6
of
6
) sorted by null
/external/openssh/
jpake.h
38
struct
jpake_ctx
{
struct
83
void jpake_dump(struct
jpake_ctx
*, const char *, ...)
86
struct
jpake_ctx
*jpake_new(void);
87
void jpake_free(struct
jpake_ctx
*);
auth2-jpake.c
91
if (authctxt->
jpake_ctx
== NULL)
92
authctxt->
jpake_ctx
= jpake_new();
114
if (authctxt->
jpake_ctx
!= NULL) {
115
jpake_free(authctxt->
jpake_ctx
);
116
authctxt->
jpake_ctx
= NULL;
374
struct
jpake_ctx
*pctx = authctxt->
jpake_ctx
;
426
struct
jpake_ctx
*pctx = authctxt->
jpake_ctx
;
484
struct
jpake_ctx
*pctx = authctxt->jpake_ctx
[
all
...]
jpake.c
71
struct
jpake_ctx
*
74
struct
jpake_ctx
*ret;
94
jpake_free(struct
jpake_ctx
*pctx)
140
/* dump entire
jpake_ctx
. NB. includes private values! */
142
jpake_dump(struct
jpake_ctx
*pctx, const char *fmt, ...)
auth.h
63
void *
jpake_ctx
;
member in struct:Authctxt
monitor.c
414
if (authctxt->
jpake_ctx
!= NULL) {
415
jpake_free(authctxt->
jpake_ctx
);
416
authctxt->
jpake_ctx
= NULL;
[
all
...]
sshconnect2.c
1031
struct
jpake_ctx
*pctx = authctxt->methoddata;
1099
struct
jpake_ctx
*pctx = authctxt->methoddata;
1146
struct
jpake_ctx
*pctx = authctxt->methoddata;
[
all
...]
Completed in 233 milliseconds