Home | History | Annotate | Download | only in x509

Lines Matching defs:in

8  * Redistribution and use in source and binary forms, with or without
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in
23 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
31 * nor may "OpenSSL" appear in their names without prior written
37 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
42 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
86 ASN1_TIME *in;
89 in=x->crl->lastUpdate;
90 if (in != tm)
92 in=M_ASN1_TIME_dup(tm);
93 if (in != NULL)
96 x->crl->lastUpdate=in;
99 return(in != NULL);
104 ASN1_TIME *in;
107 in=x->crl->nextUpdate;
108 if (in != tm)
110 in=M_ASN1_TIME_dup(tm);
111 if (in != NULL)
114 x->crl->nextUpdate=in;
117 return(in != NULL);
124 /* sort the data so it will be written in serial
138 ASN1_TIME *in;
141 in=x->revocationDate;
142 if (in != tm)
144 in=M_ASN1_TIME_dup(tm);
145 if (in != NULL)
148 x->revocationDate=in;
151 return(in != NULL);
156 ASN1_INTEGER *in;
159 in=x->serialNumber;
160 if (in != serial)
162 in=M_ASN1_INTEGER_dup(serial);
163 if (in != NULL)
166 x->serialNumber=in;
169 return(in != NULL);