diff options
author | Simon Josefsson <simon@josefsson.org> | 2010-04-13 19:56:13 +0200 |
---|---|---|
committer | Simon Josefsson <simon@josefsson.org> | 2010-04-13 20:00:29 +0200 |
commit | e12eaaf3815ec82c3ed5a6512656aab1a15fbf3c (patch) | |
tree | 26abaf3064419496a91ad3b8e19e86cff36a98db | |
parent | e0fd18c05c510114c65f5ce5763a4b5d7668fec2 (diff) | |
download | libtasn1-e12eaaf3815ec82c3ed5a6512656aab1a15fbf3c.tar.gz libtasn1-e12eaaf3815ec82c3ed5a6512656aab1a15fbf3c.tar.bz2 libtasn1-e12eaaf3815ec82c3ed5a6512656aab1a15fbf3c.zip |
Add license notes to files.
-rw-r--r-- | AUTHORS | 7 | ||||
-rw-r--r-- | NEWS | 7 | ||||
-rw-r--r-- | README | 7 | ||||
-rw-r--r-- | README-alpha | 6 | ||||
-rw-r--r-- | THANKS | 7 | ||||
-rw-r--r-- | doc/TODO | 7 | ||||
-rw-r--r-- | examples/asn1Coding_test.asn | 18 | ||||
-rw-r--r-- | lib/element.h | 21 | ||||
-rw-r--r-- | lib/gstr.h | 22 | ||||
-rw-r--r-- | lib/parser_aux.h | 21 | ||||
-rw-r--r-- | lib/structure.h | 21 | ||||
-rw-r--r-- | tests/Test_encoding.asn | 18 | ||||
-rw-r--r-- | tests/Test_tree.asn | 18 | ||||
-rw-r--r-- | tests/pkix.asn | 18 |
14 files changed, 198 insertions, 0 deletions
@@ -4,3 +4,10 @@ Nikos Mavrogiannopoulos <nmav@gnutls.org> Current maintainer: Simon Josefsson <simon@josefsson.org> + +---------------------------------------------------------------------- +Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, + 2009, 2010 Free Software Foundation, Inc. +Copying and distribution of this file, with or without modification, +are permitted in any medium without royalty provided the copyright +notice and this notice are preserved. @@ -313,3 +313,10 @@ GNU Libtasn1 NEWS -*- outline -*- * Noteworthy changes in release 0.1.0 - Initial release + +---------------------------------------------------------------------- +Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, + 2009, 2010 Free Software Foundation, Inc. +Copying and distribution of this file, with or without modification, +are permitted in any medium without royalty provided the copyright +notice and this notice are preserved. @@ -11,3 +11,10 @@ The manual is in doc/. You can also browse the manual and see updates about the project on the homepage: http://www.gnu.org/software/libtasn1/ + +---------------------------------------------------------------------- +Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, + 2009, 2010 Free Software Foundation, Inc. +Copying and distribution of this file, with or without modification, +are permitted in any medium without royalty provided the copyright +notice and this notice are preserved. diff --git a/README-alpha b/README-alpha index dae2807..d886f5d 100644 --- a/README-alpha +++ b/README-alpha @@ -40,3 +40,9 @@ $ make $ make check Happy hacking! + +---------------------------------------------------------------------- +Copyright (C) 2009, 2010 Free Software Foundation, Inc. +Copying and distribution of this file, with or without modification, +are permitted in any medium without royalty provided the copyright +notice and this notice are preserved. @@ -17,3 +17,10 @@ David Reiser <dbreiser@gmail.com> Didier Godefroy <dg@ulysium.net> Andreas Metzler <ametzler@downhill.at.eu.org> Ludovic Courtès <ludo@gnu.org> + +---------------------------------------------------------------------- +Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, + 2009, 2010 Free Software Foundation, Inc. +Copying and distribution of this file, with or without modification, +are permitted in any medium without royalty provided the copyright +notice and this notice are preserved. @@ -11,3 +11,10 @@ Current list: (+) Means high priority (*) Means medium priority (-) Means low priority (ie. nobody is interested to develop that) + +---------------------------------------------------------------------- +Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, + 2009, 2010 Free Software Foundation, Inc. +Copying and distribution of this file, with or without modification, +are permitted in any medium without royalty provided the copyright +notice and this notice are preserved. diff --git a/examples/asn1Coding_test.asn b/examples/asn1Coding_test.asn index 2189ee5..5fa00b6 100644 --- a/examples/asn1Coding_test.asn +++ b/examples/asn1Coding_test.asn @@ -10,3 +10,21 @@ Sequence1 ::= SEQUENCE { } END + +-- Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 +-- Free Software Foundation, Inc. +-- +-- This file is part of LIBTASN1. +-- +-- This program is free software: you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation, either version 3 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program. If not, see <http://www.gnu.org/licenses/>. diff --git a/lib/element.h b/lib/element.h index b5d9eb9..95c382a 100644 --- a/lib/element.h +++ b/lib/element.h @@ -1,3 +1,24 @@ +/* + * Copyright (C) 2000, 2001, 2002, 2003, 2004, 2006, 2008, 2009, 2010 + * Free Software Foundation, Inc. + * + * This file is part of LIBTASN1. + * + * The LIBTASN1 library is free software; you can redistribute it + * and/or modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA + * 02110-1301, USA + */ #ifndef _ELEMENT_H #define _ELEMENT_H @@ -1,3 +1,25 @@ +/* + * Copyright (C) 2002, 2006, 2007, 2008, 2009, 2010 Free Software + * Foundation, Inc. + * + * This file is part of LIBTASN1. + * + * The LIBTASN1 library is free software; you can redistribute it + * and/or modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA + * 02110-1301, USA + */ + void _asn1_str_cpy (char *dest, size_t dest_tot_size, const char *src); void _asn1_str_cat (char *dest, size_t dest_tot_size, const char *src); diff --git a/lib/parser_aux.h b/lib/parser_aux.h index 564f64e..def52ed 100644 --- a/lib/parser_aux.h +++ b/lib/parser_aux.h @@ -1,3 +1,24 @@ +/* + * Copyright (C) 2000, 2001, 2004, 2006, 2007, 2008, 2009, 2010 Free + * Software Foundation, Inc. + * + * This file is part of LIBTASN1. + * + * The LIBTASN1 library is free software; you can redistribute it + * and/or modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA + * 02110-1301, USA + */ #ifndef _PARSER_AUX_H #define _PARSER_AUX_H diff --git a/lib/structure.h b/lib/structure.h index 7257986..3885afc 100644 --- a/lib/structure.h +++ b/lib/structure.h @@ -1,3 +1,24 @@ +/* + * Copyright (C) 2002, 2004, 2006, 2007, 2008, 2009, 2010 Free + * Software Foundation, Inc. + * + * This file is part of LIBTASN1. + * + * The LIBTASN1 library is free software; you can redistribute it + * and/or modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA + * 02110-1301, USA + */ /*************************************************/ /* File: structure.h */ diff --git a/tests/Test_encoding.asn b/tests/Test_encoding.asn index ff8faa3..a50c340 100644 --- a/tests/Test_encoding.asn +++ b/tests/Test_encoding.asn @@ -15,3 +15,21 @@ Koko ::= SEQUENCE { } END + +-- Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 +-- Free Software Foundation, Inc. +-- +-- This file is part of LIBTASN1. +-- +-- This program is free software: you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation, either version 3 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program. If not, see <http://www.gnu.org/licenses/>. diff --git a/tests/Test_tree.asn b/tests/Test_tree.asn index ec3c996..c8187f4 100644 --- a/tests/Test_tree.asn +++ b/tests/Test_tree.asn @@ -158,3 +158,21 @@ X520LocalityName ::= CHOICE { id-Test OBJECT IDENTIFIER ::= {1 2 29 2} END + +-- Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 +-- Free Software Foundation, Inc. +-- +-- This file is part of LIBTASN1. +-- +-- This program is free software: you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation, either version 3 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program. If not, see <http://www.gnu.org/licenses/>. diff --git a/tests/pkix.asn b/tests/pkix.asn index bd3c435..b23f2c9 100644 --- a/tests/pkix.asn +++ b/tests/pkix.asn @@ -1239,3 +1239,21 @@ id-on-xmppAddr OBJECT IDENTIFIER ::= { id-on 5 } XmppAddr ::= UTF8String END + +-- Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 +-- Free Software Foundation, Inc. +-- +-- This file is part of LIBTASN1. +-- +-- This program is free software: you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation, either version 3 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program. If not, see <http://www.gnu.org/licenses/>. |