Skip to content

Commit

Permalink
remove NPN bindings -- you should be using ALPN!
Browse files Browse the repository at this point in the history
pyOpenSSL consumed these, but we've marked it as deprecated and it
already handles the case where the bindings are not available.
  • Loading branch information
reaperhulk committed Sep 9, 2019
1 parent f7c7771 commit 2603719
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions src/_cffi_src/openssl/ssl.py
Original file line number Diff line number Diff line change
Expand Up @@ -433,25 +433,9 @@
long SSL_session_reused(SSL *);
void SSL_CTX_set_next_protos_advertised_cb(SSL_CTX *,
int (*)(SSL *,
const unsigned char **,
unsigned int *,
void *),
void *);
void SSL_CTX_set_next_proto_select_cb(SSL_CTX *,
int (*)(SSL *,
unsigned char **,
unsigned char *,
const unsigned char *,
unsigned int,
void *),
void *);
int SSL_select_next_proto(unsigned char **, unsigned char *,
const unsigned char *, unsigned int,
const unsigned char *, unsigned int);
void SSL_get0_next_proto_negotiated(const SSL *,
const unsigned char **, unsigned *);
int sk_SSL_CIPHER_num(Cryptography_STACK_OF_SSL_CIPHER *);
const SSL_CIPHER *sk_SSL_CIPHER_value(Cryptography_STACK_OF_SSL_CIPHER *, int);
Expand Down

0 comments on commit 2603719

Please sign in to comment.