Lines Matching refs:I
18 X509_add_cert() adds a certificate I<cert> to the given list I<sk>.
20 X509_add_certs() adds a list of certificate I<certs> to the given list I<sk>.
21 The I<certs> argument may be NULL, which implies no effect.
22 It does not modify the list I<certs> but
24 the reference counters of those of its members added to I<sk> are increased.
26 Both these functions have a I<flags> parameter,
34 If B<X509_ADD_FLAG_PREPEND> is set then the certificates are prepended to I<sk>.
35 By default they are appended to I<sk>.
38 If B<X509_ADD_FLAG_NO_DUP> is set then certificates already contained in I<sk>,
52 because otherwise likely not for all members of the I<certs> list
53 the ownership is transferred to the list of certificates I<sk>.
55 Care should also be taken in case the I<certs> argument equals I<sk>.