diff options
Diffstat (limited to 'doc/functions/gnutls_x509_crt_check_ip')
-rw-r--r-- | doc/functions/gnutls_x509_crt_check_ip | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/doc/functions/gnutls_x509_crt_check_ip b/doc/functions/gnutls_x509_crt_check_ip new file mode 100644 index 0000000..8e17853 --- /dev/null +++ b/doc/functions/gnutls_x509_crt_check_ip @@ -0,0 +1,19 @@ + + + + +@deftypefun {unsigned} {gnutls_x509_crt_check_ip} (gnutls_x509_crt_t @var{cert}, const unsigned char * @var{ip}, unsigned int @var{ip_size}, unsigned int @var{flags}) +@var{cert}: should contain an gnutls_x509_crt_t type + +@var{ip}: A pointer to the raw IP address + +@var{ip_size}: the number of bytes in ip (4 or 16) + +@var{flags}: should be zero + +This function will check if the IP allowed IP addresses in +the certificate's subject alternative name match the provided +IP address. + +@strong{Returns:} non-zero for a successful match, and zero on failure. +@end deftypefun |