Searched defs:inLength (Results 1 - 1 of 1) sorted by relevance

/system/security/keystore/
H A DIKeystoreService.cpp345 virtual int32_t sign(const String16& name, const uint8_t* in, size_t inLength, uint8_t** out, argument
351 data.writeInt32(inLength);
352 void* buf = data.writeInplace(inLength);
353 memcpy(buf, in, inLength);
382 virtual int32_t verify(const String16& name, const uint8_t* in, size_t inLength, argument
390 data.writeInt32(inLength);
391 buf = data.writeInplace(inLength);
392 memcpy(buf, in, inLength);

Completed in 51 milliseconds