OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:umac_ctx
(Results
1 - 4
of
4
) sorted by null
/external/openssh/
umac.h
55
struct
umac_ctx
*umac_new(u_char key[]);
56
/* Dynamically allocate a
umac_ctx
struct, initialize variables,
61
int umac_reset(struct
umac_ctx
*ctx);
62
/* Reset a
umac_ctx
to begin authenicating a new message */
65
int umac_update(struct
umac_ctx
*ctx, u_char *input, long len);
68
int umac_final(struct
umac_ctx
*ctx, u_char tag[], u_char nonce[8]);
73
int umac_delete(struct
umac_ctx
*ctx);
77
int umac(struct
umac_ctx
*ctx, u_char *input,
mac.c
87
mac->
umac_ctx
= NULL;
122
mac->
umac_ctx
= umac_new(mac->key);
150
umac_update(mac->
umac_ctx
, data, datalen);
151
umac_final(mac->
umac_ctx
, m, nonce);
163
if (mac->
umac_ctx
!= NULL)
164
umac_delete(mac->
umac_ctx
);
168
mac->
umac_ctx
= NULL;
kex.h
105
struct
umac_ctx
*
umac_ctx
;
member in struct:Mac
umac.c
1179
struct
umac_ctx
{
struct
1183
}
umac_ctx
;
variable in typeref:struct:umac_ctx
[
all
...]
Completed in 336 milliseconds