Searched refs:inlen (Results 1 – 2 of 2) sorted by relevance
/aosp12/packages/modules/adb/pairing_auth/ |
H A D | pairing_auth.cpp | 251 bool pairing_auth_encrypt(PairingAuthCtx* ctx, const uint8_t* inbuf, size_t inlen, uint8_t* outbuf, in pairing_auth_encrypt() argument 257 CHECK_GT(inlen, 0U); in pairing_auth_encrypt() 259 std::vector<uint8_t> in(inbuf, inbuf + inlen); in pairing_auth_encrypt() 278 bool pairing_auth_decrypt(PairingAuthCtx* ctx, const uint8_t* inbuf, size_t inlen, uint8_t* outbuf, in pairing_auth_decrypt() argument 284 CHECK_GT(inlen, 0U); in pairing_auth_decrypt() 286 std::vector<uint8_t> in(inbuf, inbuf + inlen); in pairing_auth_decrypt()
|
/aosp12/packages/modules/adb/pairing_auth/include/adb/pairing/ |
H A D | pairing_auth.h | 148 bool pairing_auth_encrypt(PairingAuthCtx* ctx, const uint8_t* inbuf, size_t inlen, uint8_t* outbuf, 181 bool pairing_auth_decrypt(PairingAuthCtx* ctx, const uint8_t* inbuf, size_t inlen, uint8_t* outbuf,
|