HomeSort by relevance Sort by last modified time
    Searched defs:commandSize (Results 1 - 2 of 2) sorted by null

  /external/libese/libapdu/
apdu.cpp 36 const size_t commandSize = headerSize + lcSize + lc + leSize;
37 mCommand.resize(commandSize, 0);
  /external/tpm2/
ExecCommand.c 51 UINT32 commandSize;
136 // Parse command header: tag, commandSize and commandCode.
142 // Unmarshal the commandSize indicator.
143 result = UINT32_Unmarshal(&commandSize, &buffer, &size);
147 // received on that port is requestSize it must be identical to commandSize.
148 // In addition, commandSize must not be larger than MAX_COMMAND_SIZE allowed
152 // it reaches MAX_COMMAND_SIZE, and requestSize would not equal commandSize.
153 if(commandSize != requestSize || commandSize > MAX_COMMAND_SIZE)

Completed in 162 milliseconds