/openssl/doc/man3/ |
H A D | DEFINE_STACK_OF.pod | 46 TYPE *sk_TYPE_delete(STACK_OF(TYPE) *sk, int i); 47 TYPE *sk_TYPE_delete_ptr(STACK_OF(TYPE) *sk, TYPE *ptr); 50 TYPE *sk_TYPE_pop(STACK_OF(TYPE) *sk); 51 TYPE *sk_TYPE_shift(STACK_OF(TYPE) *sk); 54 TYPE *sk_TYPE_set(STACK_OF(TYPE) *sk, int idx, const TYPE *ptr); 230 B<sk_I<TYPE>_free>(), B<sk_I<TYPE>_zero>(), B<sk_I<TYPE>_pop_free>(), 231 B<sk_I<TYPE>_delete>(), B<sk_I<TYPE>_delete_ptr>(), B<sk_I<TYPE>_pop>(), 232 B<sk_I<TYPE>_shift>(), B<sk_I<TYPE>_find>(), B<sk_I<TYPE>_find_ex>(), 255 B<sk_I<TYPE>_new>(), B<sk_I<TYPE>_new_null>() and B<sk_I<TYPE>_new_reserve>() 264 B<sk_I<TYPE>_free>(), B<sk_I<TYPE>_zero>(), B<sk_I<TYPE>_pop_free>() and [all …]
|
H A D | d2i_RSAPrivateKey.pod | 76 TYPE *d2i_TYPEPrivateKey_bio(BIO *bp, TYPE **a); 77 TYPE *d2i_TYPEPrivateKey_fp(FILE *fp, TYPE **a); 79 TYPE *d2i_TYPEPublicKey_bio(BIO *bp, TYPE **a); 80 TYPE *d2i_TYPEPublicKey_fp(FILE *fp, TYPE **a); 81 TYPE *d2i_TYPEparams(TYPE **a, const unsigned char **ppin, long length); 82 TYPE *d2i_TYPEparams_bio(BIO *bp, TYPE **a); 83 TYPE *d2i_TYPEparams_fp(FILE *fp, TYPE **a); 85 TYPE *d2i_TYPE_PUBKEY_bio(BIO *bp, TYPE **a); 86 TYPE *d2i_TYPE_PUBKEY_fp(FILE *fp, TYPE **a); 256 The actual TYPE structure passed to B<i2d_I<TYPE>>() must be a valid [all …]
|
H A D | OPENSSL_LH_COMPFUNC.pod | 26 LHASH_OF(TYPE) 28 DEFINE_LHASH_OF_EX(TYPE); 39 TYPE *lh_TYPE_insert(LHASH_OF(TYPE) *table, TYPE *data); 40 TYPE *lh_TYPE_delete(LHASH_OF(TYPE) *table, TYPE *data); 41 TYPE *lh_TYPE_retrieve(LHASH_OF(TYPE) *table, TYPE *data); 121 static int stuff_cmp(const TYPE *a, const TYPE *b) 144 B<lh_I<TYPE>_free>() frees the B<LHASH_OF>(B<I<TYPE>>) structure 196 static IMPLEMENT_LHASH_DOALL_ARG_FN(TYPE, const TYPE, BIO) 218 B<lh_I<TYPE>_doall>() or B<lh_I<TYPE>_doall_arg>(). 239 B<lh_I<TYPE>> function returns or uses a B<I<TYPE> *> or B<LHASH_OF(I<TYPE>) *>. [all …]
|
H A D | EVP_PKEY_CTX_get_algor.pod | 7 EVP_{TYPE}_CTX_get_algor() 8 EVP_{TYPE}_CTX_get_algor_params() 9 EVP_{TYPE}_CTX_set_algor_params() 11 ... where {TYPE} is the name of an EVP operation type. 38 B<EVP_I<TYPE>_CTX_get_algor>() attempts to retrieve a complete 39 AlgorithmIdentifier from the B<EVP_I<TYPE>> implementation, and populates 42 function is supported at all by the B<EVP_I<TYPE>> implementation. 50 function is supported at all by the B<EVP_I<TYPE>> implementation. 57 to the B<EVP_I<TYPE>> implementation. 59 function is supported at all by the B<EVP_I<TYPE>> implementation. [all …]
|
H A D | PEM_read_CMS.pod | 51 DECLARE_PEM_rw(name, TYPE) 53 TYPE *PEM_read_TYPE(FILE *fp, TYPE **a, pem_password_cb *cb, void *u); 54 TYPE *PEM_read_bio_TYPE(BIO *bp, TYPE **a, pem_password_cb *cb, void *u); 55 int PEM_write_TYPE(FILE *fp, const TYPE *a); 56 int PEM_write_bio_TYPE(BIO *bp, const TYPE *a); 91 In the description below, B<I<TYPE>> is used 101 B<PEM_read_I<TYPE>>() reads a PEM-encoded object of B<I<TYPE>> from the file 105 B<PEM_read_bio_I<TYPE>>() is similar to B<PEM_read_I<TYPE>>() but reads from 111 B<PEM_write_bio_I<TYPE>>() similarly writes to the BIO I<bp>. 121 B<PEM_read_I<TYPE>>() and B<PEM_read_bio_I<TYPE>>() return a pointer to an [all …]
|
H A D | d2i_X509.pod | 399 TYPE *d2i_TYPE(TYPE **a, const unsigned char **ppin, long length); 400 TYPE *d2i_TYPE_bio(BIO *bp, TYPE **a); 401 TYPE *d2i_TYPE_fp(FILE *fp, TYPE **a); 438 B<d2i_I<TYPE>_bio>() is similar to B<d2i_I<TYPE>>() except it attempts 441 B<d2i_I<TYPE>_fp>() is similar to B<d2i_I<TYPE>>() except it attempts 454 B<i2d_I<TYPE>_bio>() is similar to B<i2d_I<TYPE>>() except it writes 458 B<i2d_I<TYPE>_fp>() is similar to B<i2d_I<TYPE>>() except it writes 473 The actual TYPE structure passed to B<i2d_I<TYPE>>() must be a valid 531 B<d2i_I<TYPE>>(), B<d2i_I<TYPE>_bio>() and B<d2i_I<TYPE>_fp>() return a valid 539 B<i2d_I<TYPE>_bio>() and B<i2d_I<TYPE>_fp>() return 1 for success and 0 if an [all …]
|
H A D | X509_dup.pod | 381 TYPE *TYPE_new(void); 382 TYPE *TYPE_dup(const TYPE *a); 383 void TYPE_free(TYPE *a); 396 In the description below, B<I<TYPE>> is used 413 B<I<TYPE>_new>() allocates an empty object of the indicated type. 414 The object returned must be released by calling B<I<TYPE>_free>(). 416 B<I<TYPE>_new_ex>() is similar to B<I<TYPE>_new>() but also passes the 419 binary data using B<d2i_I<TYPE>>(). 421 B<I<TYPE>_dup>() copies an existing object, leaving it untouched. 443 B<I<TYPE>_new>(), B<I<TYPE>_new_ex>() and B<I<TYPE>_dup>() return a pointer to [all …]
|
H A D | BIO_get_ex_new_index.pod | 39 int TYPE_set_ex_data(TYPE *d, int idx, void *arg); 41 void *TYPE_get_ex_data(const TYPE *d, int idx); 43 #define TYPE_set_app_data(TYPE *d, void *arg) 44 #define TYPE_get_app_data(TYPE *d) 75 In the description here, I<TYPE> is used a placeholder 78 All functions with a I<TYPE> of B<DH>, B<DSA>, B<RSA> and B<EC_KEY> are deprecated. 82 All functions with a I<TYPE> of B<ENGINE> are deprecated. 92 an offset into the opaque exdata part of the TYPE object. I<d> B<MUST NOT> be NULL. 95 an offset into the opaque exdata part of the TYPE object. I<d> B<MUST NOT> be NULL.
|
/openssl/crypto/pem/ |
H A D | pem_local.h | 96 # define IMPLEMENT_PEM_provided_write_to(name, TYPE, type, str, asn1, \ argument 98 PEM_write_fnsig(name, TYPE, OUTTYPE, writename) \ 105 PEM_write_ex_fnsig(name, TYPE, OUTTYPE, writename) \ 116 PEM_write_cb_fnsig(name, TYPE, OUTTYPE, writename) \ 124 PEM_write_ex_cb_fnsig(name, TYPE, OUTTYPE, writename) \ 135 # define IMPLEMENT_PEM_provided_write_fp(name, TYPE, type, str, asn1) argument 136 # define IMPLEMENT_PEM_provided_write_cb_fp(name, TYPE, type, str, asn1) argument 154 IMPLEMENT_PEM_provided_write_fp(name, TYPE, type, str, asn1) 158 IMPLEMENT_PEM_provided_write_cb_fp(name, TYPE, type, str, asn1) 162 IMPLEMENT_PEM_provided_write(name, TYPE, type, str, asn1) [all …]
|
/openssl/doc/internal/man3/ |
H A D | OSSL_SAFE_MATH_SIGNED.pod | 16 OSSL_SAFE_MATH_SIGNED(NAME, TYPE) 17 OSSL_SAFE_MATH_UNSIGNED(NAME, TYPE) 19 TYPE safe_add_TYPE(TYPE a, TYPE b, int *err); 20 TYPE safe_sub_TYPE(TYPE a, TYPE b, int *err); 21 TYPE safe_mul_TYPE(TYPE a, TYPE b, int *err); 22 TYPE safe_div_TYPE(TYPE a, TYPE b, int *err); 23 TYPE safe_mod_TYPE(TYPE a, TYPE b, int *err); 24 TYPE safe_div_round_up_TYPE(TYPE a, TYPE b, int *err); 25 TYPE safe_muldiv_TYPE(TYPE a, TYPE b, TYPE c, int *err); 26 TYPE safe_neg_TYPE(TYPE a, int *err); [all …]
|
H A D | OPENSSL_SA.pod | 16 SPARSE_ARRAY_OF(TYPE) 17 DEFINE_SPARSE_ARRAY_OF(TYPE) 19 SPARSE_ARRAY_OF(TYPE) *ossl_sa_TYPE_new(void); 20 void ossl_sa_TYPE_free(const SPARSE_ARRAY_OF(TYPE) *sa); 28 TYPE *ossl_sa_TYPE_get(const SPARSE_ARRAY_OF(TYPE) *sa, ossl_uintmax_t idx); 30 TYPE *value); 44 array of B<I<TYPE>>. This will mean that a pointer to type B<I<TYPE>> 47 B<ossl_sa_I<TYPE>_>. For example: 49 TYPE *ossl_sa_TYPE_get(SPARSE_ARRAY_OF(TYPE) *sa, ossl_uintmax_t idx); 113 B<ossl_sa_I<TYPE>_doall>(), B<ossl_sa_I<TYPE>_doall_arg>(), [all …]
|
H A D | DEFINE_LIST_OF.pod | 21 OSSL_LIST_MEMBER(NAME, TYPE); 22 DEFINE_LIST_OF(NAME, TYPE); 54 elements with the name B<I<TYPE>>. The type is represented 55 by B<OSSL_LIST>(B<I<TYPE>>) and each function name begins with 56 B<ossl_list_I<TYPE>_>. The list's linkages are stored in the 57 B<OSSL_LIST_MEMBER>(B<I<TYPE>>, B<I<TYPE>>) field. 85 B<ossl_list_I<TYPE>_insert_before>() inserts the element I<elem>, 89 B<ossl_list_I<TYPE>_insert_after>() inserts the element I<elem>, 98 B<ossl_list_I<TYPE>_num>() returns the number of elements in the 101 B<ossl_list_I<TYPE>_head>(), B<ossl_list_I<TYPE>_tail>(), [all …]
|
H A D | DEFINE_PRIORITY_QUEUE_OF.pod | 21 DEFINE_PRIORITY_QUEUE_OF(NAME, TYPE) 40 B<I<TYPE>> is used as a placeholder for any datatype. 47 priority queue of B<I<TYPE>> elements. The type is represented by 48 B<PRIORITY_QUEUE_OF>(B<I<TYPE>>) and each function name begins with 49 B<ossl_pqueue_I<TYPE>_>. 51 B<ossl_pqueue_I<TYPE>_num>() returns the number of elements in I<pq> 54 B<ossl_pqueue_I<TYPE>_new>() allocates a new priority queue using 75 B<ossl_pqueue_I<TYPE>_remove>(). 92 B<ossl_pqueue_I<TYPE>_num>() returns the number of elements in the 98 B<ossl_pqueue_I<TYPE>_free>() and B<ossl_pqueue_I<TYPE>_pop_free>() [all …]
|
/openssl/dev/release-aux/ |
H A D | release-state-fn.sh | 50 local before="$PRE_LABEL$TYPE" 78 TYPE= 83 TYPE=dev 101 TYPE= 106 TYPE=dev 113 TYPE=dev 128 TYPE= 135 TYPE=dev 143 TYPE=dev 153 TYPE=dev [all …]
|
H A D | release-version-fn.sh | 42 TYPE=$( echo "$PRE_RELEASE_TAG" \ 71 elif [ "$TYPE" = 'dev' ]; then 76 if [ "$TYPE" = 'dev' ]; then 83 if [ "$TYPE" = 'dev' ]; then 97 case "$TYPE+$PRE_LABEL+$PRE_NUM" in 99 PRE_RELEASE_TAG="$TYPE"
|
/openssl/external/perl/Text-Template-1.56/t/ |
H A D | taint.t | 76 should_fail TYPE => 'file', SOURCE => $tfile; 77 should_fail TYPE => 'file', SOURCE => $tfile, UNTAINT => 1; 78 should_fail TYPE => 'file', SOURCE => $file; 79 should_work TYPE => 'file', SOURCE => $file, UNTAINT => 1; 83 should_fail TYPE => 'filehandle', SOURCE => $fh; 95 should_fail TYPE => 'string', SOURCE => $ttemplate; 97 should_work TYPE => 'string', SOURCE => $template; 103 should_fail TYPE => 'array', SOURCE => $tarray; 104 should_fail TYPE => 'array', SOURCE => $tarray, UNTAINT => 1; 105 should_work TYPE => 'array', SOURCE => $array; [all …]
|
H A D | broken.t | 13 TYPE => 'string', 21 TYPE => 'string', 30 TYPE => 'string', 38 TYPE => 'string', 50 TYPE => 'string', 62 my $r = Text::Template->new(TYPE => 'string', SOURCE => 'abc{1/0}defg')
|
H A D | prepend.t | 20 TYPE => 'STRING', 24 TYPE => 'STRING', 41 TYPE => 'STRING', 45 TYPE => 'STRING', 61 TYPE => 'STRING', 65 TYPE => 'STRING',
|
H A D | delimiters.t | 18 TYPE => 'STRING', 27 $template1 = Text::Template->new(TYPE => 'STRING', SOURCE => $template); 35 TYPE => 'STRING', 44 $template1 = Text::Template->new(TYPE => 'STRING', SOURCE => $template); 74 TYPE => 'STRING',
|
H A D | error.t | 20 eval { Text::Template->new(TYPE => 'FILE'); }; 24 eval { Text::Template->new(TYPE => 'wlunch', SOURCE => 'fish food'); }; 29 TYPE => 'file',
|
H A D | basic.t | 103 $tmpl = Text::Template->new(TYPE => 'STRING', SOURCE => 'B{"\\}"}C{"\\{"}D'); 111 $tmpl = Text::Template->new(TYPE => 'STRING', SOURCE => qq{A{"\t"}B}); 141 my $tmpl = Text::Template->new(TYPE => 'STRING', SOURCE => $test); 175 TYPE => 'string',
|
/openssl/test/ |
H A D | cmp_ctx_test.c | 360 TYPE val1_to_free = NEW; \ 363 TYPE val2_to_free = NEW; \ 365 TYPE val2_read = 0; \ 366 TYPE val3_read = 0; \ 530 TYPE *, NULL, IS_0, TYPE##_new(), TYPE##_free) 547 TYPE *, NULL, DEFAULT, TYPE##_new(), TYPE##_free) 566 sk_##TYPE##_new_null(), sk_##TYPE##_free) 645 TYPE val1_to_free = NEW; \ 650 TYPE val2_read = 0; \ 737 DEFINE_PUSH_BASE_TEST(push##N, DUP, FIELD, ELEM, TYPE *, TYPE, \ [all …]
|
/openssl/external/perl/Text-Template-1.56/lib/Text/ |
H A D | Template.pm | 81 TYPE => $stype, 107 my $type = $self->{TYPE}; 129 $self->{TYPE} = 'STRING'; 134 $self->{TYPE} = 'STRING'; 138 $self->{TYPE} = 'STRING'; 170 $self->{TYPE} = $type || 'STRING'; 178 return 1 if $self->{TYPE} eq 'PREPARSED'; 182 unless ($self->{TYPE} eq 'STRING') { 270 $self->{TYPE} = 'PREPARSED'; 296 unless ($fi_self->{TYPE} eq 'PREPARSED') { [all …]
|
/openssl/fuzz/ |
H A D | asn1.c | 214 #define DO_TEST(TYPE, D2I, I2D, PRINT) { \ argument 217 TYPE *type = D2I(NULL, &p, len); \ 230 TYPE ## _free(type); \ 237 TYPE *type = D2I(NULL, &p, len); \ 248 TYPE ## _free(type); \ 252 #define DO_TEST_PRINT_PCTX(TYPE, D2I, I2D, PRINT) { \ argument 255 TYPE *type = D2I(NULL, &p, len); \ 266 TYPE ## _free(type); \ 271 #define DO_TEST_NO_PRINT(TYPE, D2I, I2D) { \ argument 274 TYPE *type = D2I(NULL, &p, len); \ [all …]
|
/openssl/crypto/cmp/ |
H A D | cmp_ctx.c | 23 #define DEFINE_OSSL_CMP_CTX_get0(FIELD, TYPE) \ argument 24 DEFINE_OSSL_CMP_CTX_get0_NAME(FIELD, FIELD, TYPE) 40 #define DEFINE_OSSL_set0(PREFIX, FIELD, TYPE) \ in DEFINE_OSSL_CMP_CTX_get0_NAME() argument 41 DEFINE_OSSL_set0_NAME(PREFIX, FIELD, FIELD, TYPE) in DEFINE_OSSL_CMP_CTX_get0_NAME() 49 TYPE##_free(ctx->FIELD); \ in DEFINE_OSSL_CMP_CTX_get0_NAME() 255 #define DEFINE_OSSL_set(PREFIX, FIELD, TYPE) \ argument 569 TYPE *val_dup = NULL; \ in DEFINE_OSSL_set1_certs() 578 TYPE##_free(ctx->FIELD); \ in DEFINE_OSSL_set1_certs() 595 if (val != NULL && TYPE##_invalid(val)) { \ 599 if (val != NULL && !TYPE##_up_ref(val)) \ [all …]
|