Home | History | Annotate | Download | only in ssl

Lines Matching full:ctext

8443 /* if cText is non-null, then decipher, check MAC, and decompress the
8444 * SSL record from cText->buf (typically gs->inbuf)
8449 * If cText is NULL, then the ciphertext has previously been deciphered and
8467 ssl3_HandleRecord(sslSocket *ss, SSL3Ciphertext *cText, sslBuffer *databuf)
8498 /* cText is NULL when we're called from ssl3_RestartHandshakeAfterXXX().
8502 if (cText == NULL) {
8536 PRINT_BUF(80, (ss, "ciphertext:", cText->buf->buf, cText->buf->len));
8541 if (isTLS && cText->buf->len > (MAX_FRAGMENT_LENGTH + 2048)) {
8548 /* decrypt from cText buf to plaintext. */
8551 plaintext->space, cText->buf->buf, cText->buf->len);
8585 rType = cText->type;
8587 rType, cText->version, crSpec->read_seq_num,
8700 SSL_GETPID(), ss->fd, cText->type));