1gnutls_record_can_use_length_hiding(3g)nutlgsnutls_record_can_use_length_hiding(3)
2
3
4
6 gnutls_record_can_use_length_hiding - API function
7
9 #include <gnutls/gnutls.h>
10
11 unsigned gnutls_record_can_use_length_hiding(gnutls_session_t session);
12
14 gnutls_session_t session
15 is a gnutls_session_t type.
16
18 If the session supports length-hiding padding, you can invoke
19 gnutls_record_send_range() to send a message whose length is hidden in
20 the given range. If the session does not support length hiding padding,
21 you can use the standard gnutls_record_send() function, or
22 gnutls_record_send_range() making sure that the range is the same as
23 the length of the message you are trying to send.
24
26 true (1) if the current session supports length-hiding padding, false
27 (0) if the current session does not.
28
30 Report bugs to <bugs@gnutls.org>.
31 Home page: http://www.gnutls.org
32
33
35 Copyright © 2001-2018 Free Software Foundation, Inc., and others.
36 Copying and distribution of this file, with or without modification,
37 are permitted in any medium without royalty provided the copyright
38 notice and this notice are preserved.
39
41 The full documentation for gnutls is maintained as a Texinfo manual.
42 If the /usr/share/doc/gnutls/ directory does not contain the HTML form
43 visit
44
45 http://www.gnutls.org/manual/
46
47gnutls 3.6.g5nutls_record_can_use_length_hiding(3)