OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:auth_token_key
(Results
1 - 3
of
3
) sorted by null
/system/gatekeeper/
gatekeeper.cpp
230
const uint8_t *
auth_token_key
= NULL;
local
232
if (GetAuthTokenKey(&
auth_token_key
, &key_len)) {
234
ComputeSignature(token->hmac, sizeof(token->hmac),
auth_token_key
, key_len,
236
delete[]
auth_token_key
;
/system/core/gatekeeperd/
SoftGateKeeper.h
59
virtual bool GetAuthTokenKey(const uint8_t **
auth_token_key
,
61
if (
auth_token_key
== NULL || length == NULL) return false;
65
*
auth_token_key
= auth_token_key_copy;
/system/gatekeeper/include/gatekeeper/
gatekeeper.h
59
* Ownership of the
auth_token_key
pointer is maintained by the implementor.
64
virtual bool GetAuthTokenKey(const uint8_t **
auth_token_key
, uint32_t *length)
Completed in 138 milliseconds