CRL Extention Voodoo

2003-11-07 Thread Jay Case
Hey All, I'm attempting to gain understanding of CRL extension vagaries in the "real world" (sorry! ;). Associated specs appear a bit broad in interpretation and specialization constraint. Being a "code monkey" droid, I'm wrestling w/ scoping the extension problem space; (1) Notion of certific

Re: time_t from ASN1_TIME

2003-11-02 Thread Jay Case
e.tm_wday = 0; lTime.tm_yday = 0; lTime.tm_isdst = 0; // No DST adjustment requested lResult = mktime(&lTime); if ((time_t)-1 != lResult) { if (0 != lTime.tm_isdst) { lResult -= 3600; // mktime may adjust for DST (OS

time_t from ASN1_TIME

2003-10-31 Thread Jay Case
By chance, does anyone have a utility or example to get a time_t value from an ASN1_TIME? Something like; time_t getTimeFromASN1(const ASN1_TIME *); Thanks - Jay __ OpenSSL Project http://www.open