summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSimon Josefsson <simon@josefsson.org>2007-08-31 15:06:15 +0200
committerSimon Josefsson <simon@josefsson.org>2007-08-31 15:06:15 +0200
commit356ee8d0a8b60d8acf1f4346003b335ed6a6ba66 (patch)
treed9154f02a196a041f727d05e4c2886394e6ec592 /src
parent57762a6f3197c4150806777ff1ba39f3c63f943a (diff)
downloadlibtasn1-356ee8d0a8b60d8acf1f4346003b335ed6a6ba66.tar.gz
libtasn1-356ee8d0a8b60d8acf1f4346003b335ed6a6ba66.tar.bz2
libtasn1-356ee8d0a8b60d8acf1f4346003b335ed6a6ba66.zip
Use GPLv3 for self tests, tools, build infrastructure.
Diffstat (limited to 'src')
-rw-r--r--src/CertificateExample.c24
-rw-r--r--src/CrlExample.c24
-rw-r--r--src/Makefile.am19
-rw-r--r--src/asn1Coding.c23
-rw-r--r--src/asn1Decoding.c23
-rw-r--r--src/asn1Parser.c23
6 files changed, 64 insertions, 72 deletions
diff --git a/src/CertificateExample.c b/src/CertificateExample.c
index db72af3..d96b9d5 100644
--- a/src/CertificateExample.c
+++ b/src/CertificateExample.c
@@ -1,26 +1,24 @@
/*
- * Copyright (C) 2006 Free Software Foundation
+ * Copyright (C) 2006, 2007 Free Software Foundation
* Copyright (C) 2000,2001 Fabio Fiorina
*
* 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 2 of the
- * License, or (at your option) any later version.
+ * 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.
+ * 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, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- * 02110-1301, USA
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
*/
-
/*****************************************************/
/* File: CertificateExample.c */
/* Description: An example on how to use the ASN1 */
diff --git a/src/CrlExample.c b/src/CrlExample.c
index e5371b9..80c30bb 100644
--- a/src/CrlExample.c
+++ b/src/CrlExample.c
@@ -1,26 +1,24 @@
/*
- * Copyright (C) 2006 Free Software Foundation
+ * Copyright (C) 2006, 2007 Free Software Foundation
* Copyright (C) 2000,2001 Fabio Fiorina
*
* 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 2 of the
- * License, or (at your option) any later version.
+ * 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.
+ * 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, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- * 02110-1301, USA
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
*/
-
/*****************************************************/
/* File: CrlExample.c */
/* Description: An example on how to use the ASN1 */
diff --git a/src/Makefile.am b/src/Makefile.am
index 1c0d171..1d6290d 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -1,21 +1,20 @@
## Process this file with automake to produce Makefile.in
-# Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation
+# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation
#
# This file is part of LIBTASN1.
#
-# This file 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 2 of the License, or
+# 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 file 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.
+# 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 file; if not, write to the Free Software Foundation,
-# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
INCLUDES = -I$(top_srcdir)/lib -I$(top_srcdir)/gl -I$(top_builddir)/gl
diff --git a/src/asn1Coding.c b/src/asn1Coding.c
index dce006c..b0b7894 100644
--- a/src/asn1Coding.c
+++ b/src/asn1Coding.c
@@ -1,23 +1,22 @@
/*
- * Copyright (C) 2006 Free Software Foundation
+ * Copyright (C) 2006, 2007 Free Software Foundation
* Copyright (C) 2002 Fabio Fiorina
*
* 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 2 of the
- * License, or (at your option) any later version.
+ * 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.
+ * 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, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- * 02110-1301, USA
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
*/
diff --git a/src/asn1Decoding.c b/src/asn1Decoding.c
index ebc26ce..e4879e2 100644
--- a/src/asn1Decoding.c
+++ b/src/asn1Decoding.c
@@ -1,23 +1,22 @@
/*
- * Copyright (C) 2006 Free Software Foundation
+ * Copyright (C) 2006, 2007 Free Software Foundation
* Copyright (C) 2002 Fabio Fiorina
*
* 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 2 of the
- * License, or (at your option) any later version.
+ * 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.
+ * 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, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- * 02110-1301, USA
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
*/
diff --git a/src/asn1Parser.c b/src/asn1Parser.c
index ce8d609..b968f22 100644
--- a/src/asn1Parser.c
+++ b/src/asn1Parser.c
@@ -1,23 +1,22 @@
/*
- * Copyright (C) 2006 Free Software Foundation
+ * Copyright (C) 2006, 2007 Free Software Foundation
* Copyright (C) 2002 Fabio Fiorina
*
* 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 2 of the
- * License, or (at your option) any later version.
+ * 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.
+ * 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, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- * 02110-1301, USA
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
*/