From: Graham B. <gb...@us...> - 2002-01-22 11:24:30
|
Update of /cvsroot/perl-ldap/asn In directory usw-pr-cvs1:/tmp/cvs-serv12237 Modified Files: ChangeLog README parser.y Log Message: Release 0.15 Index: ChangeLog =================================================================== RCS file: /cvsroot/perl-ldap/asn/ChangeLog,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- ChangeLog 2001/09/10 18:04:09 1.19 +++ ChangeLog 2002/01/22 11:24:28 1.20 @@ -1,3 +1,48 @@ +2002-01-21 20:00 Graham Barr + + * t/06bigint.t: + + Be safer in creating BigInt objects + +2002-01-02 16:56 Graham Barr + + * lib/Convert/ASN1/_encode.pm: + + Change the encode errors to include the hierarchical name of the + element in the ASN.1 which is causing the problem + +2002-01-02 16:31 Graham Barr + + * lib/Convert/ASN1.pm: + + Remove unwanted warn statement + +2001-09-25 00:05 Graham Barr + + * lib/Convert/ASN1.pm: + + Better error reporting for encoding + +2001-09-22 01:16 Graham Barr + + * parser.y, lib/Convert/ASN1.pm, lib/Convert/ASN1/Debug.pm, + lib/Convert/ASN1/_decode.pm, lib/Convert/ASN1/_encode.pm, + lib/Convert/ASN1/parser.pm, t/00prim.t: + + Add support for RELATIVE-OID + +2001-09-22 01:14 Graham Barr + + * t/: 00prim.t, 06bigint.t: + + Move some integer tests that really use bigint from 00prim.t into 06bigint.t + +2001-09-21 23:24 Graham Barr + + * lib/Convert/ASN1.pm, lib/Convert/ASN1/_decode.pm, t/03seqof.t: + + Support for nested SEQUENCE/SET OF's + 2001-09-10 19:03 Graham Barr * README, lib/Convert/ASN1.pm: Index: README =================================================================== RCS file: /cvsroot/perl-ldap/asn/README,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- README 2001/09/10 18:03:47 1.2 +++ README 2002/01/22 11:24:28 1.3 @@ -1,13 +1,13 @@ I consider Convert::ASN1 a replacement for my earlier Convert::BER module. While ASN1.pm is not as flexable as BER.pm, because PDUs must -be described up fronta, it is also more powerful. For example an LDAP +be described up front, it is also more powerful. For example an LDAP filter is a recursive structure, BER.pm cannot encode or decode this in a single pass, ASN1.pm can. Convert::ASN1 will parse ASN.1 descriptions and will encode from and decode to perl data structures using a hierarchy of references. -Copyright (c) 2000-2001 Graham Barr. All rights reserved. +Copyright (c) 2000-2002 Graham Barr. All rights reserved. This package is free software; you can redistribute it and/or modify it under the same terms as Perl itself. Index: parser.y =================================================================== RCS file: /cvsroot/perl-ldap/asn/parser.y,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- parser.y 2001/09/22 00:16:49 1.5 +++ parser.y 2002/01/22 11:24:28 1.6 @@ -18,6 +18,10 @@ %token POSTRBRACE 18 %{ +# Copyright (c) 2000-2002 Graham Barr <gb...@po...>. All rights reserved. +# This program is free software; you can redistribute it and/or +# modify it under the same terms as Perl itself. + package Convert::ASN1::parser; ;# $Id$ |