HomeSort by relevance Sort by last modified time
    Searched refs:TOKEN_SIZE (Results 1 - 3 of 3) sorted by null

  /system/core/adb/
adb.h 107 #define TOKEN_SIZE 20
transport.h 152 char token[TOKEN_SIZE] = {};
adb_auth_host.cpp 302 static std::string adb_auth_sign(RSA* key, const char* token, size_t token_size) {
303 if (token_size != TOKEN_SIZE) {
304 D("Unexpected token size %zd", token_size);
312 if (!RSA_sign(NID_sha1, reinterpret_cast<const uint8_t*>(token), token_size,
465 void send_auth_response(const char* token, size_t token_size, atransport* t) {
476 std::string result = adb_auth_sign(key.get(), token, token_size);

Completed in 303 milliseconds