timestr           719 ext/openssl/openssl.c static time_t asn1_time_to_time_t(ASN1_UTCTIME * timestr) /* {{{ */
timestr           734 ext/openssl/openssl.c 	if (ASN1_STRING_type(timestr) != V_ASN1_UTCTIME && ASN1_STRING_type(timestr) != V_ASN1_GENERALIZEDTIME) {
timestr           739 ext/openssl/openssl.c 	if (ASN1_STRING_length(timestr) != strlen((const char*)ASN1_STRING_data(timestr))) {
timestr           744 ext/openssl/openssl.c 	if (ASN1_STRING_length(timestr) < 13) {
timestr           745 ext/openssl/openssl.c 		php_error_docref(NULL, E_WARNING, "unable to parse time string %s correctly", timestr->data);
timestr           749 ext/openssl/openssl.c 	if (ASN1_STRING_type(timestr) == V_ASN1_GENERALIZEDTIME && ASN1_STRING_length(timestr) < 15) {
timestr           750 ext/openssl/openssl.c 		php_error_docref(NULL, E_WARNING, "unable to parse time string %s correctly", timestr->data);
timestr           754 ext/openssl/openssl.c 	strbuf = estrdup((char *)ASN1_STRING_data(timestr));
timestr           760 ext/openssl/openssl.c 	thestr = strbuf + ASN1_STRING_length(timestr) - 3;
timestr           777 ext/openssl/openssl.c 	if( ASN1_STRING_type(timestr) == V_ASN1_UTCTIME ) {
timestr           784 ext/openssl/openssl.c 	} else if( ASN1_STRING_type(timestr) == V_ASN1_GENERALIZEDTIME ) {