Home | History | Annotate | Download | only in cipher

Lines Matching full:padding

190     /* Compute padding and feed that into the cipher. */
191 uint8_t padding[256];
193 memset(padding, 0, padding_len - 1);
194 padding[padding_len - 1] = padding_len - 1;
195 if (!EVP_EncryptUpdate(&ssl3_ctx->cipher_ctx, out + total, &len, padding,
253 /* Decrypt to get the plaintext + MAC + padding. */
266 /* Remove CBC padding and MAC. This would normally be timing-sensitive, but SSLv3 CBC
276 /* The padding must be minimal. */
372 16 + SHA_DIGEST_LENGTH, /* overhead (padding + SHA1) */
385 16 + SHA_DIGEST_LENGTH, /* overhead (padding + SHA1) */
398 8 + SHA_DIGEST_LENGTH, /* overhead (padding + SHA1) */