OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:auth_t
(Results
1 - 10
of
10
) sorted by null
/external/srtp/crypto/include/
auth.h
53
typedef struct
auth_t
*auth_pointer_t;
90
/* functions to get information about a particular
auth_t
*/
93
auth_get_key_length(const struct
auth_t
*a);
96
auth_get_tag_length(const struct
auth_t
*a);
99
auth_get_prefix_length(const struct
auth_t
*a);
134
typedef struct
auth_t
{
struct
140
}
auth_t
;
typedef in typeref:struct:auth_t
hmac.h
59
hmac_alloc(
auth_t
**a, int key_len, int out_len);
62
hmac_dealloc(
auth_t
*a);
null_auth.h
55
null_auth_alloc(
auth_t
**a, int key_len, int out_len);
58
null_auth_dealloc(
auth_t
*a);
/external/srtp/crypto/hash/
null_auth.c
56
null_auth_alloc(
auth_t
**a, int key_len, int out_len) {
64
pointer = (uint8_t*)crypto_alloc(sizeof(null_auth_ctx_t) + sizeof(
auth_t
));
69
*a = (
auth_t
*)pointer;
71
(*a)->state = pointer + sizeof (
auth_t
);
83
null_auth_dealloc(
auth_t
*a) {
88
sizeof(null_auth_ctx_t) + sizeof(
auth_t
));
auth.c
57
auth_get_key_length(const
auth_t
*a) {
62
auth_get_tag_length(const
auth_t
*a) {
67
auth_get_prefix_length(const
auth_t
*a) {
88
auth_t
*a;
hmac.c
57
hmac_alloc(
auth_t
**a, int key_len, int out_len) {
76
pointer = (uint8_t*)crypto_alloc(sizeof(hmac_ctx_t) + sizeof(
auth_t
));
81
*a = (
auth_t
*)pointer;
83
(*a)->state = pointer + sizeof(
auth_t
);
95
hmac_dealloc(
auth_t
*a) {
100
sizeof(hmac_ctx_t) + sizeof(
auth_t
));
/external/srtp/crypto/test/
auth_driver.c
74
auth_bits_per_second(
auth_t
*h, int msg_len);
87
auth_t
*a = NULL;
167
auth_bits_per_second(
auth_t
*a, int msg_len_octets) {
/external/srtp/include/
srtp_priv.h
213
* cipher_t and
auth_t
pointers will point to the same structures
219
auth_t
*rtp_auth;
223
auth_t
*rtcp_auth;
/external/tcpdump/
oakley.h
117
u_int8_t
auth_t
; /* method of authentication */
/external/srtp/
Changes
85
time. Previously, the structure
auth_t
contained the
130
A minor
auth_t
API change: last argument of auth_init() eliminated.
Completed in 1267 milliseconds