• Home
  • Raw
  • Download

Lines Matching full:critical

15 //! let bc = bc.critical().ca().pathlen(1);
27 critical: bool, field
42 critical: false, in new()
48 /// Sets the `critical` flag to `true`. The extension will be critical.
49 pub fn critical(&mut self) -> &mut BasicConstraints { in critical() method
50 self.critical = true; in critical()
70 if self.critical { in build()
71 value.push_str("critical,"); in build()
88 critical: bool, field
110 critical: false, in new()
123 /// Sets the `critical` flag to `true`. The extension will be critical.
124 pub fn critical(&mut self) -> &mut KeyUsage { in critical() method
125 self.critical = true; in critical()
187 append(&mut value, &mut first, self.critical, "critical"); in build()
224 critical: bool, field
249 critical: false, in new()
265 /// Sets the `critical` flag to `true`. The extension will be critical.
266 pub fn critical(&mut self) -> &mut ExtendedKeyUsage { in critical() method
267 self.critical = true; in critical()
347 append(&mut value, &mut first, self.critical, "critical"); in build()
374 critical: bool, field
386 SubjectKeyIdentifier { critical: false } in new()
389 /// Sets the `critical` flag to `true`. The extension will be critical.
390 pub fn critical(&mut self) -> &mut SubjectKeyIdentifier { in critical() method
391 self.critical = true; in critical()
399 append(&mut value, &mut first, self.critical, "critical"); in build()
408 critical: bool, field
423 critical: false, in new()
429 /// Sets the `critical` flag to `true`. The extension will be critical.
430 pub fn critical(&mut self) -> &mut AuthorityKeyIdentifier { in critical() method
431 self.critical = true; in critical()
451 append(&mut value, &mut first, self.critical, "critical"); in build()
469 critical: bool, field
483 critical: false, in new()
488 /// Sets the `critical` flag to `true`. The extension will be critical.
489 pub fn critical(&mut self) -> &mut SubjectAlternativeName { in critical() method
490 self.critical = true; in critical()
540 append(&mut value, &mut first, self.critical, "critical"); in build()