From: Chris R. <chr...@me...> - 2002-02-21 09:23:28
|
Stefan Walther <wa...@bl...> wrote: > Dear Experts, > =20 > I'm a relatively new to Perl and Perl-LDAP, so thanks for your help. > =20 > I am using PERL-LDAP a Novell/NT directory, and everything works > fine exept the GUID I need to use; I only get things like = S=C3=8DH=C3=99TT=C3=94?=C2=AF2 > returned but I cannot manage to use Convert::ASN1 > =20 > I have nearly tried everything (I am able to think about ;-)) > =20 > Thanks for your help > =20 > Greetings > =20 > Stefan The GUID attribute (a proprietary Novell attribute) appears to be defined as a 16 octet long octet string, according to the NDS online documentation. The structure of the value isn't obviously described by Novell online. I would be surprised if the syntax was described by ASN.1; I would guess that it is a simple packed array of bytes and words instead - see perl's unpack() function. Cheers, Chris |