summaryrefslogtreecommitdiffstats
path: root/net/tls
AgeCommit message (Expand)AuthorLines
2023-08-27tls: get cipher_name from cipher_desc in tls_set_sw_offloadSabrina Dubroca-25/+4
2023-08-27tls: use tls_cipher_desc to access per-cipher crypto_info in tls_set_sw_offloadSabrina Dubroca-76/+13
2023-08-27tls: use tls_cipher_desc to get per-cipher sizes in tls_set_sw_offloadSabrina Dubroca-63/+16
2023-08-27tls: use tls_cipher_desc to simplify do_tls_getsockopt_confSabrina Dubroca-163/+11
2023-08-27tls: get crypto_info size from tls_cipher_desc in do_tls_setsockopt_confSabrina Dubroca-31/+8
2023-08-27tls: expand use of tls_cipher_desc in tls_sw_fallback_initSabrina Dubroca-14/+6
2023-08-27tls: allocate the fallback aead after checking that the cipher is validSabrina Dubroca-10/+10
2023-08-27tls: expand use of tls_cipher_desc in tls_set_device_offloadSabrina Dubroca-18/+4
2023-08-27tls: validate cipher descriptions at compile timeSabrina Dubroca-0/+18
2023-08-27tls: extend tls_cipher_desc to fully describe the ciphersSabrina Dubroca-9/+64
2023-08-27tls: rename tls_cipher_size_desc to tls_cipher_descSabrina Dubroca-52/+52
2023-08-27tls: reduce size of tls_cipher_size_descSabrina Dubroca-9/+20
2023-08-27tls: add TLS_CIPHER_ARIA_GCM_* to tls_cipher_size_descSabrina Dubroca-0/+2
2023-08-27tls: move tls_cipher_size_desc to net/tls/tls.hSabrina Dubroca-0/+10
2023-08-10Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski-34/+33
2023-08-10net: tls: set MSG_SPLICE_PAGES consistentlyJakub Kicinski-3/+0
2023-08-08net/tls: avoid TCP window full during ->read_sock()Hannes Reinecke-8/+5
2023-08-07net/tls: Remove unused function declarationsYue Haibing-4/+0
2023-08-06net: tls: avoid discarding data on record closeJakub Kicinski-31/+33
2023-07-28Merge branch 'in-kernel-support-for-the-tls-alert-protocol'Jakub Kicinski-0/+1
2023-07-28net/tls: Move TLS protocol elements to a separate headerChuck Lever-0/+1
2023-07-27net/tls: implement ->read_sock()Hannes Reinecke-0/+103
2023-07-27net/tls: split tls_rx_reader_lockHannes Reinecke-16/+22
2023-07-27net/tls: Use tcp_read_sock() instead of ops->read_sock()Hannes Reinecke-2/+1
2023-07-27net/tls: handle MSG_EOR for tls_device TX flowHannes Reinecke-1/+5
2023-07-27net/tls: handle MSG_EOR for tls_sw TX flowHannes Reinecke-1/+4
2023-06-24net: Kill MSG_SENDPAGE_NOTLASTDavid Howells-4/+3
2023-06-24sock: Remove ->sendpage*() in favour of sendmsg(MSG_SPLICE_PAGES)David Howells-65/+0
2023-06-24tcp_bpf, smc, tls, espintcp, siw: Reduce MSG_SENDPAGE_NOTLAST usageDavid Howells-2/+2
2023-06-22net/tls: fix comment typoYueh-Shun Li-1/+1
2023-06-15net: tls: make the offload check helper take skb not socketJakub Kicinski-2/+2
2023-06-08tls/device: Convert tls_device_sendpage() to use MSG_SPLICE_PAGESDavid Howells-69/+23
2023-06-08tls/device: Support MSG_SPLICE_PAGESDavid Howells-0/+26
2023-06-08tls/sw: Convert tls_sw_sendpage() to use MSG_SPLICE_PAGESDavid Howells-138/+35
2023-06-08tls/sw: Support MSG_SPLICE_PAGESDavid Howells-0/+41
2023-06-08tls/device: Use splice_eof() to flushDavid Howells-0/+26
2023-06-08tls/sw: Use splice_eof() to flushDavid Howells-0/+77
2023-06-08tls: Allow MSG_SPLICE_PAGES but treat it as normal sendmsgDavid Howells-2/+3
2023-06-02tls: suppress wakeups unless we have a full recordJakub Kicinski-0/+35
2023-06-01Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski-2/+6
2023-05-26tls: improve lockless access safety of tls_err_abort()Jakub Kicinski-2/+6
2023-05-25Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski-50/+166
2023-05-23tls: Inline do_tcp_sendpages()David Howells-9/+15
2023-05-19tls: rx: strp: don't use GFP_KERNEL in softirq contextJakub Kicinski-0/+4
2023-05-19tls: rx: strp: preserve decryption status of skbs when neededJakub Kicinski-31/+113
2023-05-19tls: rx: strp: factor out copying skb dataJakub Kicinski-10/+23
2023-05-19tls: rx: strp: fix determining record length in copy modeJakub Kicinski-6/+15
2023-05-19tls: rx: strp: force mixed decrypted records into copy modeJakub Kicinski-5/+11
2023-05-19tls: rx: strp: set the skb->len of detached / CoW'ed skbsJakub Kicinski-0/+2
2023-05-19tls: rx: device: fix checking decryption statusJakub Kicinski-1/+1