/**
  * return true if the passed in string can be represented without
  * loss as a PrintableString, false otherwise.
  */
 protected bool CanBePrintable(
     string str)
 {
     return(DerPrintableString.IsPrintableString(str));
 }
 protected bool CanBePrintable(string str) =>
 DerPrintableString.IsPrintableString(str);