• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asus-wl-520gu-7.0.1.45/src/router/shared.asus/openssl/

Lines Matching refs:X509

274 	} /* X509 */;
276 DECLARE_STACK_OF(X509)
277 DECLARE_ASN1_SET_OF(X509)
284 int (*check_trust)(struct x509_trust_st *, X509 *, int);
451 X509 *x509;
486 STACK_OF(X509) *certs;
565 #define X509_dup(x509) (X509 *)ASN1_dup((int (*)())i2d_X509, \
573 #define d2i_X509_fp(fp,x509) (X509 *)ASN1_d2i_fp((char *(*)())X509_new, \
576 #define d2i_X509_bio(bp,x509) (X509 *)ASN1_d2i_bio((char *(*)())X509_new, \
707 int X509_verify(X509 *a, EVP_PKEY *r);
722 int X509_sign(X509 *x, EVP_PKEY *pkey, const EVP_MD *md);
727 int X509_pubkey_digest(const X509 *data,const EVP_MD *type,
729 int X509_digest(const X509 *data,const EVP_MD *type,
740 X509 *d2i_X509_fp(FILE *fp, X509 **x509);
741 int i2d_X509_fp(FILE *fp,X509 *x509);
773 X509 *d2i_X509_bio(BIO *bp,X509 **x509);
774 int i2d_X509_bio(BIO *bp,X509 *x509);
805 X509 *X509_dup(X509 *x509);
832 X509_REQ * X509_to_X509_REQ(X509 *x, EVP_PKEY *pkey, const EVP_MD *md);
833 X509 * X509_REQ_to_X509(X509_REQ *r, int days,EVP_PKEY *pkey);
843 STACK_OF(X509) *chain);
875 DECLARE_ASN1_FUNCTIONS(X509)
880 int X509_set_ex_data(X509 *r, int idx, void *arg);
881 void *X509_get_ex_data(X509 *r, int idx);
882 int i2d_X509_AUX(X509 *a,unsigned char **pp);
883 X509 * d2i_X509_AUX(X509 **a,unsigned char **pp,long length);
885 int X509_alias_set1(X509 *x, unsigned char *name, int len);
886 int X509_keyid_set1(X509 *x, unsigned char *id, int len);
887 unsigned char * X509_alias_get0(X509 *x, int *len);
888 int (*X509_TRUST_set_default(int (*trust)(int , X509 *, int)))(int, X509 *, int);
890 int X509_add1_trust_object(X509 *x, ASN1_OBJECT *obj);
891 int X509_add1_reject_object(X509 *x, ASN1_OBJECT *obj);
892 void X509_trust_clear(X509 *x);
893 void X509_reject_clear(X509 *x);
936 int X509_set_version(X509 *x,long version);
937 int X509_set_serialNumber(X509 *x, ASN1_INTEGER *serial);
938 ASN1_INTEGER * X509_get_serialNumber(X509 *x);
939 int X509_set_issuer_name(X509 *x, X509_NAME *name);
940 X509_NAME * X509_get_issuer_name(X509 *a);
941 int X509_set_subject_name(X509 *x, X509_NAME *name);
942 X509_NAME * X509_get_subject_name(X509 *a);
943 int X509_set_notBefore(X509 *x, ASN1_TIME *tm);
944 int X509_set_notAfter(X509 *x, ASN1_TIME *tm);
945 int X509_set_pubkey(X509 *x, EVP_PKEY *pkey);
946 EVP_PKEY * X509_get_pubkey(X509 *x);
947 ASN1_BIT_STRING * X509_get0_pubkey_bitstr(const X509 *x);
948 int X509_certificate_type(X509 *x,EVP_PKEY *pubkey /* optional */);
988 int X509_check_private_key(X509 *x509,EVP_PKEY *pkey);
990 int X509_issuer_and_serial_cmp(const X509 *a, const X509 *b);
991 unsigned long X509_issuer_and_serial_hash(X509 *a);
993 int X509_issuer_name_cmp(const X509 *a, const X509 *b);
994 unsigned long X509_issuer_name_hash(X509 *a);
996 int X509_subject_name_cmp(const X509 *a, const X509 *b);
997 unsigned long X509_subject_name_hash(X509 *x);
999 int X509_cmp(const X509 *a, const X509 *b);
1005 int X509_print_ex_fp(FILE *bp,X509 *x, unsigned long nmflag, unsigned long cflag);
1006 int X509_print_fp(FILE *bp,X509 *x);
1015 int X509_print_ex(BIO *bp,X509 *x, unsigned long nmflag, unsigned long cflag);
1016 int X509_print(BIO *bp,X509 *x);
1017 int X509_ocspid_print(BIO *bp,X509 *x);
1071 int X509_get_ext_count(X509 *x);
1072 int X509_get_ext_by_NID(X509 *x, int nid, int lastpos);
1073 int X509_get_ext_by_OBJ(X509 *x,ASN1_OBJECT *obj,int lastpos);
1074 int X509_get_ext_by_critical(X509 *x, int crit, int lastpos);
1075 X509_EXTENSION *X509_get_ext(X509 *x, int loc);
1076 X509_EXTENSION *X509_delete_ext(X509 *x, int loc);
1077 int X509_add_ext(X509 *x, X509_EXTENSION *ex, int loc);
1078 void * X509_get_ext_d2i(X509 *x, int nid, int *crit, int *idx);
1079 int X509_add1_ext_i2d(X509 *x, int nid, void *value, int crit,
1150 /* lookup a cert from a X509 STACK */
1151 X509 *X509_find_by_issuer_and_serial(STACK_OF(X509) *sk,X509_NAME *name,
1153 X509 *X509_find_by_subject(STACK_OF(X509) *sk,X509_NAME *name);
1172 int X509_check_trust(X509 *x, int id, int flags);
1176 int X509_TRUST_add(int id, int flags, int (*ck)(X509_TRUST *, X509 *, int),
1189 /* Error codes for the X509 functions. */