Home | History | Annotate | Download | only in crypto

Lines Matching defs:output_len

167   int output_len;
168 if (PK11_CipherOp(ctx.get(), ghash_key, &output_len, sizeof(ghash_key),
176 if (output_len != sizeof(ghash_key)) {
204 if (PK11_CipherOp(ctx.get(), tag_mask, &output_len, sizeof(tag_mask),
209 if (output_len != sizeof(tag_mask)) {
218 if (PK11_CipherOp(ctx.get(), out, &output_len, max_len,
226 if (static_cast<unsigned int>(output_len) != data_len) {
233 static_cast<unsigned int>(output_len)) {
234 DLOG(INFO) << "(max_len - kAuthTagSize) is less than output_len";
241 ghash.UpdateCiphertext(out, output_len);
242 ghash.Finish(out + output_len, Aes128Gcm12Encrypter::kAuthTagSize);
244 out[output_len + i] ^= tag_mask[i];
247 *out_len = output_len + Aes128Gcm12Encrypter::kAuthTagSize;
329 unsigned int output_len;
331 output, &output_len, ciphertext_size,
338 if (output_len != ciphertext_size) {