HomeSort by relevance Sort by last modified time
    Searched refs:padding_length (Results 1 - 10 of 10) sorted by null

  /external/boringssl/src/crypto/cipher_extra/
tls_cbc.c 84 size_t padding_length = in[in_len - 1]; local
86 crypto_word_t good = constant_time_ge_w(in_len, overhead + padding_length);
92 // We can't check just |padding_length+1| bytes because that leaks
102 uint8_t mask = constant_time_ge_8(padding_length, i);
104 // The final |padding_length+1| bytes should all have the value
105 // |padding_length|. Therefore the XOR should be zero.
106 good &= ~(mask & (padding_length ^ b));
109 // If any of the final |padding_length+1| bytes had the wrong value,
113 // Always treat |padding_length| as zero on error. If, assuming block size of
114 // 16, a padding of [<15 arbitrary bytes> 15] treated |padding_length| as 1
    [all...]
e_ssl3.c 310 unsigned padding_length = out[total - 1]; local
311 if (total < padding_length + 1 + mac_len) {
316 if (padding_length + 1 > EVP_CIPHER_CTX_block_size(&ssl3_ctx->cipher_ctx)) {
320 data_len = total - padding_length - 1 - mac_len;
  /system/core/libziparchive/include/ziparchive/
zip_writer.h 80 uint32_t padding_length; member in struct:ZipWriter::FileEntry
  /system/core/libziparchive/
zip_writer.cc 195 dst->extra_field_length = src.padding_length;
239 file_entry.padding_length = padding;
257 if (file_entry.padding_length != 0 && fwrite(zero_padding.data(), 1, file_entry.padding_length,
258 file_) != file_entry.padding_length) {
  /external/compiler-rt/lib/interception/
interception_win.cc 687 size_t padding_length = 0; local
713 padding_length = kAddressLength;
722 uptr patch_address = old_func - padding_length;
723 uptr patch_length = instructions_length + padding_length;
  /frameworks/base/tools/aapt2/
StringPool.cpp 493 const size_t padding_length = sizeof(android::ResStringPool_span) - local
495 uint8_t* padding = out->NextBlock<uint8_t>(padding_length);
496 memset(padding, 0xff, padding_length);
  /external/scapy/scapy/contrib/
pnio_rtc.py 213 StrFixedLenField("padding", "", length_from=lambda p: p[PNIORealTime].padding_length()),
222 def padding_length(self): member in class:PNIORealTime
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
rtp_sender.cc 590 size_t padding_length) {
595 for (size_t j = 0; j < (padding_length >> 2); ++j) {
599 packet[header_length + padding_length - 1] =
600 static_cast<uint8_t>(padding_length);
    [all...]
rtp_sender.h 346 size_t padding_length);
  /external/flac/libFLAC/
metadata_iterators.c 101 static FLAC__bool write_metadata_block_stationary_with_padding_(FLAC__Metadata_SimpleIterator *iterator, FLAC__StreamMetadata *block, unsigned padding_length, FLAC__bool padding_is_last);
    [all...]

Completed in 911 milliseconds