if (attr.getAttrType().getId().equals(id_pda_dateOfBirth)) {
ASN1Set set = attr.getAttrValues();
// Come on, we'll only allow one dateOfBirth, we're not allowing such frauds with multiple birth dates
DERGeneralizedTime time = DERGeneralizedTime.getInstance(set.getObjectAt(0));
Date date = time.getDate();
String dateStr = dateF.format(date);
result += prefix + "dateOfBirth="+dateStr;
}
if (attr.getAttrType().getId().equals(id_pda_placeOfBirth)) {
ASN1Set set = attr.getAttrValues();
// same here only one placeOfBirth