Home | History | Annotate | Download | only in keystore

Lines Matching defs:info

365  * plaintext, and its size is specified in blob.info. The total size of the two
368 * than blob.info, blob.length, and blob.value are modified by encryptBlob()
389 uint8_t info;
409 Blob(const uint8_t* value, int32_t valueLength, const uint8_t* info, uint8_t infoLength,
414 mBlob.info = infoLength;
415 memcpy(mBlob.value + valueLength, info, infoLength);
442 return mBlob.info;
498 // move info after space for padding
499 memmove(&mBlob.encrypted[encryptedLength], &mBlob.value[mBlob.length], mBlob.info);
515 size_t fileLength = encryptedLength + headerLength + mBlob.info;
563 info);
591 if (mBlob.info != 0) {
592 // move info from after padding to after data
593 memmove(&mBlob.value[mBlob.length], &mBlob.value[maxValueLength], mBlob.info);
699 if (length > SALT_SIZE && rawBlob.info == SALT_SIZE) {