Hello
I am trying to extract a userCertificate;binary object from an ldif file using Net::LDAP::LDIF and even in this trivial example the @entries is not populated, the other objects and attributes are? use Net::LDAP::LDIF; $ldif = Net::LDAP::LDIF->new( "test.ldif", "r", onerror => 'undef' ); @entries = $ldif->read( ); The goal is to read the ldif file, extract the certificate information from the ldif file and store back into a DER format file. Thanks Bob Rion