Home
last modified time | relevance | path

Searched refs:fp (Results 101 – 125 of 132) sorted by relevance

123456

/openssl/doc/man3/
H A DERR_print_errors.pod13 void ERR_print_errors_fp(FILE *fp);
H A DX509_NAME_print_ex.pod14 int X509_NAME_print_ex_fp(FILE *fp, const X509_NAME *nm,
26 except the output is written to FILE pointer I<fp>.
H A DX509_PUBKEY_new.pod31 EVP_PKEY *d2i_PUBKEY_fp(FILE *fp, EVP_PKEY **a);
33 int i2d_PUBKEY_fp(const FILE *fp, EVP_PKEY *pkey);
H A DOPENSSL_malloc.pod74 int CRYPTO_mem_leaks_fp(FILE *fp);
/openssl/apps/lib/
H A Dapps.c2966 void unbuffer(FILE *fp) in unbuffer() argument
2979 setbuf(fp, NULL); in unbuffer()
3019 FILE *fp = NULL; in bio_open_owner() local
3060 fp = fdopen(fd, modestr('w', format)); in bio_open_owner()
3063 fp = fopen(filename, modestr('w', format)); in bio_open_owner()
3065 if (fp == NULL) in bio_open_owner()
3070 b = BIO_new_fp(fp, bflags); in bio_open_owner()
3079 if (fp != NULL) in bio_open_owner()
3080 fclose(fp); in bio_open_owner()
/openssl/crypto/bio/
H A Dbss_conn.c611 static long conn_callback_ctrl(BIO *b, int cmd, BIO_info_cb *fp) in conn_callback_ctrl() argument
621 data->info_callback = fp; in conn_callback_ctrl()
/openssl/crypto/evp/
H A Dp_lib.c1208 int EVP_PKEY_print_public_fp(FILE *fp, const EVP_PKEY *pkey, in EVP_PKEY_print_public_fp() argument
1212 BIO *b = BIO_new_fp(fp, BIO_NOCLOSE); in EVP_PKEY_print_public_fp()
1221 int EVP_PKEY_print_private_fp(FILE *fp, const EVP_PKEY *pkey, in EVP_PKEY_print_private_fp() argument
1225 BIO *b = BIO_new_fp(fp, BIO_NOCLOSE); in EVP_PKEY_print_private_fp()
1234 int EVP_PKEY_print_params_fp(FILE *fp, const EVP_PKEY *pkey, in EVP_PKEY_print_params_fp() argument
1238 BIO *b = BIO_new_fp(fp, BIO_NOCLOSE); in EVP_PKEY_print_params_fp()
/openssl/include/openssl/
H A Dpkcs7.h.in240 PKCS7 *d2i_PKCS7_fp(FILE *fp, PKCS7 **p7);
241 int i2d_PKCS7_fp(FILE *fp, const PKCS7 *p7);
H A Dpkcs12.h.in320 int i2d_PKCS12_fp(FILE *fp, const PKCS12 *p12);
324 PKCS12 *d2i_PKCS12_fp(FILE *fp, PKCS12 **p12);
H A Dbio.h.in494 # define BIO_set_fp(b,fp,c) BIO_ctrl(b,BIO_C_SET_FILE_PTR,c,(char *)(fp)) argument
665 long BIO_callback_ctrl(BIO *b, int cmd, BIO_info_cb *fp);
738 int BIO_dump_fp(FILE *fp, const void *s, int len);
739 int BIO_dump_indent_fp(FILE *fp, const void *s, int len, int indent);
H A Dtls1.h334 (SSL_CTX *ctx, int (*fp)(SSL *, unsigned char *, unsigned char *,
H A Drsa.h342 OSSL_DEPRECATEDIN_3_0 int RSA_print_fp(FILE *fp, const RSA *r, int offset);
H A Dasn1.h.in784 int ASN1_STRING_print_ex_fp(FILE *fp, const ASN1_STRING *str, unsigned long flags);
809 int ASN1_UTCTIME_print(BIO *fp, const ASN1_UTCTIME *a);
810 int ASN1_GENERALIZEDTIME_print(BIO *fp, const ASN1_GENERALIZEDTIME *a);
H A Devp.h1431 int EVP_PKEY_print_public_fp(FILE *fp, const EVP_PKEY *pkey,
1433 int EVP_PKEY_print_private_fp(FILE *fp, const EVP_PKEY *pkey,
1435 int EVP_PKEY_print_params_fp(FILE *fp, const EVP_PKEY *pkey,
H A Dbn.h333 int BN_print_fp(FILE *fp, const BIGNUM *a);
H A Derr.h.in443 void ERR_print_errors_fp(FILE *fp);
/openssl/crypto/poly1305/asm/
H A Dpoly1305-mips.pl36 ($gp,$tp,$sp,$fp,$ra)=map("\$$_",(3,28..31));
/openssl/test/
H A Dparams_conversion_test.c334 while (!BIO_eof(s->fp)) { in run_param_file_tests()
H A Dtestutil.h540 BIO *fp; /* Input file */ member
/openssl/apps/include/
H A Dapps.h75 void unbuffer(FILE *fp);
/openssl/crypto/
H A Dsparccpuid.S58 ! Even though we do not use %fp register bank,
133 add %fp,BIAS,%i0 ! return pointer to caller´s top of stack
/openssl/crypto/des/asm/
H A Ddes_enc.m41586 LDPTR [%fp+BIAS+ARG0+7*ARGSZ], local3 ! enc
1587 LDPTR [%fp+BIAS+ARG0+6*ARGSZ], local4 ! ivec
1688 LDPTR [%fp+BIAS+ARG0+6*ARGSZ], local4 ! ivec
1709 LDPTR [%fp+BIAS+ARG0+6*ARGSZ], local7 ! iv
1751 LDPTR [%fp+BIAS+ARG0+6*ARGSZ], local4 ! ivec
/openssl/ssl/
H A Dssl_local.h526 long (*ssl_callback_ctrl) (SSL *s, int cb_id, void (*fp) (void));
527 long (*ssl_ctx_callback_ctrl) (SSL_CTX *s, int cb_id, void (*fp) (void));
2601 __owur long ssl3_callback_ctrl(SSL *s, int cmd, void (*fp) (void));
2602 __owur long ssl3_ctx_callback_ctrl(SSL_CTX *s, int cmd, void (*fp) (void));
H A Dssl_lib.c2838 long SSL_callback_ctrl(SSL *s, int cmd, void (*fp) (void)) in SSL_callback_ctrl()
2850 void *arg))(fp); in SSL_callback_ctrl()
2854 return s->method->ssl_callback_ctrl(s, cmd, fp); in SSL_callback_ctrl()
2992 long SSL_CTX_callback_ctrl(SSL_CTX *ctx, int cmd, void (*fp) (void)) in SSL_CTX_callback_ctrl()
2999 void *arg))(fp); in SSL_CTX_callback_ctrl()
3003 return ctx->method->ssl_ctx_callback_ctrl(ctx, cmd, fp); in SSL_CTX_callback_ctrl()
/openssl/crypto/sha/asm/
H A Dsha1-sparcv9a.pl421 add %fp,$bias-256,$base

Completed in 143 milliseconds

123456