Lines Matching defs:lifetime

228 	time_t	lifetime;
242 /* check ksk lifetime */
243 if ( (lifetime = dki_lifetime (ksk)) == 0 ) /* if lifetime of key is not set.. */
244 lifetime = z->k_life; /* ..use global configured lifetime */
253 if ( lifetime > 0 && age > lifetime && !fileexist (path) ) /* lifetime is over and no kskrollover in progress */
279 lg_mesg (LG_WARNING, "\"%s\": lifetime of key signing key %d exceeded since %s",
280 zp->zone, ksk->tag, str_delspace (age2str (age - lifetime)));
358 ** If the lifetime of the active key is reached, do a rfc5011
429 /* At the first time we introduce a standby key, the lifetime of the current KSK shouldn't be expired, */
437 dkp = genkey (listp, dir, domain, DKI_KSK, z, DKI_PUBLISHED); /* gentime == now; lifetime = z->k_life; exp = 0 */
463 ** Check the ksk status of a zone if a ksk lifetime is set.
465 ** Prints out a warning message if the lifetime of the current
538 time_t lifetime;
554 lifetime = z->max_ttl + z->proptime; /* draft kolkman/gieben */
560 dki_age (dkp, currtime) > lifetime )
564 lifetime, dkp->tag, dki_age (dkp, currtime));
582 lifetime = z->z_life; /* global configured lifetime for zsk */
584 if ( akey == NULL && lifetime > 0 ) /* no active key found */
593 lifetime = dki_lifetime (akey); /* set lifetime to lt of active key */
595 /* lifetime of active key is expired and published key exist ? */
597 if ( lifetime > 0 && age > lifetime - (OFFSET) )
600 lifetime, (OFFSET) , akey->tag, dki_age (akey, currtime) );
616 lg_mesg (LG_NOTICE, "\"%s\": lifetime of zone signing key %d exceeded: ZSK rollover done", domain, akey->tag);
619 lifetime = dki_lifetime (akey); /* set lifetime to lt of the new active key (F. Behrens) */
624 lg_mesg (LG_NOTICE, "\"%s\": lifetime of zone signing key %d exceeded since %s: ZSK rollover deferred: waiting for published key",
625 domain, akey->tag, str_delspace (age2str (age - lifetime)));
635 if ( nextkey == NULL && lifetime > 0 && (akey == NULL ||
636 dki_age (akey, currtime + z->resign) > lifetime - (OFFSET)) )