Lines Matching defs:in
11 * apply to all code found in this distribution, be it the RC4, RSA,
16 * Copyright remains Eric Young's, and as such any Copyright notices in
18 * If this package is used in a product, Eric Young should be given attribution
20 * This can be in the form of a textual message at program startup or
21 * in documentation (online or textual) provided with the package.
23 * Redistribution and use in source and binary forms, with or without
28 * 2. Redistributions in binary form must reproduce the above copyright
29 * notice, this list of conditions and the following disclaimer in the
44 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
48 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
79 ASN1_INTEGER *in;
82 in=x->cert_info->serialNumber;
83 if (in != serial)
85 in=M_ASN1_INTEGER_dup(serial);
86 if (in != NULL)
89 x->cert_info->serialNumber=in;
92 return(in != NULL);
109 ASN1_TIME *in;
112 in=x->cert_info->validity->notBefore;
113 if (in != tm)
115 in=M_ASN1_TIME_dup(tm);
116 if (in != NULL)
119 x->cert_info->validity->notBefore=in;
122 return(in != NULL);
127 ASN1_TIME *in;
130 in=x->cert_info->validity->notAfter;
131 if (in != tm)
133 in=M_ASN1_TIME_dup(tm);
134 if (in != NULL)
137 x->cert_info->validity->notAfter=in;
140 return(in != NULL);