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

/system/security/keystore/
H A DIKeystoreService.cpp761 virtual int32_t sign(const String16& name, const uint8_t* in, size_t inLength, uint8_t** out, argument
767 data.writeInt32(inLength);
768 void* buf = data.writeInplace(inLength);
769 memcpy(buf, in, inLength);
798 virtual int32_t verify(const String16& name, const uint8_t* in, size_t inLength, argument
806 data.writeInt32(inLength);
807 buf = data.writeInplace(inLength);
808 memcpy(buf, in, inLength);

Completed in 37 milliseconds