Home | History | Annotate | Download | only in x509

Lines Matching defs:in

10  * apply to all code found in this distribution, be it the RC4, RSA,
15 * Copyright remains Eric Young's, and as such any Copyright notices in
17 * If this package is used in a product, Eric Young should be given attribution
19 * This can be in the form of a textual message at program startup or
20 * in documentation (online or textual) provided with the package.
22 * Redistribution and use in source and binary forms, with or without
27 * 2. Redistributions in binary form must reproduce the above copyright
28 * notice, this list of conditions and the following disclaimer in the
43 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
48 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
83 ASN1_INTEGER *in;
86 in=x->cert_info->serialNumber;
87 if (in != serial)
89 in=M_ASN1_INTEGER_dup(serial);
90 if (in != NULL)
93 x->cert_info->serialNumber=in;
96 return(in != NULL);
113 ASN1_TIME *in;
116 in=x->cert_info->validity->notBefore;
117 if (in != tm)
119 in=M_ASN1_TIME_dup(tm);
120 if (in != NULL)
123 x->cert_info->validity->notBefore=in;
126 return(in != NULL);
131 ASN1_TIME *in;
134 in=x->cert_info->validity->notAfter;
135 if (in != tm)
137 in=M_ASN1_TIME_dup(tm);
138 if (in != NULL)
141 x->cert_info->validity->notAfter=in;
144 return(in != NULL);