Index: ossp-pkg/uuid/ChangeLog RCS File: /v/ossp/cvs/ossp-pkg/uuid/Attic/ChangeLog,v rcsdiff -q -kk '-r1.101' '-r1.102' -u '/v/ossp/cvs/ossp-pkg/uuid/Attic/ChangeLog,v' 2>/dev/null --- ChangeLog 2006/01/12 20:32:42 1.101 +++ ChangeLog 2006/01/13 06:44:30 1.102 @@ -13,6 +13,9 @@ Changes between 1.3.2 and 1.4.0 (06-Dec-2005 to 12-Jan-2006) + o Adjust copyright messages for new year 2006. + [Ralf S. Engelschall] + o Added experimental PostgreSQL bindings. [Ralf S. Engelschall] Index: ossp-pkg/uuid/Makefile.in RCS File: /v/ossp/cvs/ossp-pkg/uuid/Attic/Makefile.in,v rcsdiff -q -kk '-r1.38' '-r1.39' -u '/v/ossp/cvs/ossp-pkg/uuid/Attic/Makefile.in,v' 2>/dev/null --- Makefile.in 2006/01/12 20:31:50 1.38 +++ Makefile.in 2006/01/13 06:44:30 1.39 @@ -1,7 +1,7 @@ ## ## OSSP uuid - Universally Unique Identifier -## Copyright (c) 2004-2005 Ralf S. Engelschall -## Copyright (c) 2004-2005 The OSSP Project +## Copyright (c) 2004-2006 Ralf S. Engelschall +## Copyright (c) 2004-2006 The OSSP Project ## ## This file is part of OSSP uuid, a library for the generation ## of UUIDs which can found at http://www.ossp.org/pkg/lib/uuid/ Index: ossp-pkg/uuid/README RCS File: /v/ossp/cvs/ossp-pkg/uuid/Attic/README,v rcsdiff -q -kk '-r1.35' '-r1.36' -u '/v/ossp/cvs/ossp-pkg/uuid/Attic/README,v' 2>/dev/null --- README 2006/01/12 20:32:42 1.35 +++ README 2006/01/13 06:44:30 1.36 @@ -29,8 +29,8 @@ COPYRIGHT AND LICENSE - Copyright (c) 2004-2005 Ralf S. Engelschall - Copyright (c) 2004-2005 The OSSP Project + Copyright (c) 2004-2006 Ralf S. Engelschall + Copyright (c) 2004-2006 The OSSP Project This file is part of OSSP uuid, a library for the generation of UUIDs which can found at http://www.ossp.org/pkg/lib/uuid/ Index: ossp-pkg/uuid/configure.ac RCS File: /v/ossp/cvs/ossp-pkg/uuid/Attic/configure.ac,v co -q -kk -p'1.11' '/v/ossp/cvs/ossp-pkg/uuid/Attic/configure.ac,v' | diff -u /dev/null - -L'ossp-pkg/uuid/configure.ac' 2>/dev/null --- ossp-pkg/uuid/configure.ac +++ - 2024-05-09 18:48:24.287768981 +0200 @@ -0,0 +1,56 @@ +dnl ## +dnl ## OSSP uuid - Universally Unique Identifier +dnl ## Copyright (c) 2004-2006 Ralf S. Engelschall +dnl ## Copyright (c) 2004-2006 The OSSP Project +dnl ## +dnl ## This file is part of OSSP uuid, a library for the generation +dnl ## of UUIDs which can found at http://www.ossp.org/pkg/lib/uuid/ +dnl ## +dnl ## Permission to use, copy, modify, and distribute this software for +dnl ## any purpose with or without fee is hereby granted, provided that +dnl ## the above copyright notice and this permission notice appear in all +dnl ## copies. +dnl ## +dnl ## THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED +dnl ## WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +dnl ## MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +dnl ## IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR +dnl ## CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +dnl ## SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +dnl ## LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF +dnl ## USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +dnl ## ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +dnl ## OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT +dnl ## OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +dnl ## SUCH DAMAGE. +dnl ## +dnl ## configure.ac: GNU Autoconf source script +dnl ## + +AC_PREREQ(2.53) +AC_INIT +UUID_VERSION_RAW=`$ac_confdir/shtool version -l c -d short uuid_vers.h` +UUID_VERSION_STR=`$ac_confdir/shtool version -l c -d long uuid_vers.h` +UUID_VERSION_HEX=`$ac_confdir/shtool version -l c -d hex uuid_vers.h` +$ac_confdir/shtool echo -e \ + "Configuring %BOSSP uuid%b (Universally Unique Identifier), version %B${UUID_VERSION_STR}%b" +AC_SUBST(UUID_VERSION_RAW) +AC_SUBST(UUID_VERSION_STR) +AC_SUBST(UUID_VERSION_HEX) + +AC_PROG_MAKE_SET +AC_PROG_CC +AC_CHECK_DEBUGGING + +with_tags="" +sinclude(libtool.m4) +AC_PROG_LIBTOOL + +sinclude(uuid.ac) +UUID_CHECK_ALL + +AC_CONFIG_HEADERS(config.h) +AC_CONFIG_FILES([Makefile uuid-config uuid.pc uuid.h]) +AC_CONFIG_COMMANDS([adjustment], [chmod a-w uuid.h; chmod a+x uuid-config]) +AC_OUTPUT + Index: ossp-pkg/uuid/perl/Makefile.PL RCS File: /v/ossp/cvs/ossp-pkg/uuid/perl/Attic/Makefile.PL,v rcsdiff -q -kk '-r1.9' '-r1.10' -u '/v/ossp/cvs/ossp-pkg/uuid/perl/Attic/Makefile.PL,v' 2>/dev/null --- Makefile.PL 2005/09/02 18:47:53 1.9 +++ Makefile.PL 2006/01/13 06:44:33 1.10 @@ -1,7 +1,7 @@ ## ## OSSP uuid - Universally Unique Identifier -## Copyright (c) 2004-2005 Ralf S. Engelschall -## Copyright (c) 2004-2005 The OSSP Project +## Copyright (c) 2004-2006 Ralf S. Engelschall +## Copyright (c) 2004-2006 The OSSP Project ## ## This file is part of OSSP uuid, a library for the generation ## of UUIDs which can found at http://www.ossp.org/pkg/lib/uuid/ Index: ossp-pkg/uuid/perl/uuid.pm RCS File: /v/ossp/cvs/ossp-pkg/uuid/perl/Attic/uuid.pm,v rcsdiff -q -kk '-r1.14' '-r1.15' -u '/v/ossp/cvs/ossp-pkg/uuid/perl/Attic/uuid.pm,v' 2>/dev/null --- uuid.pm 2006/01/12 20:32:43 1.14 +++ uuid.pm 2006/01/13 06:44:33 1.15 @@ -1,7 +1,7 @@ ## ## OSSP uuid - Universally Unique Identifier -## Copyright (c) 2004-2005 Ralf S. Engelschall -## Copyright (c) 2004-2005 The OSSP Project +## Copyright (c) 2004-2006 Ralf S. Engelschall +## Copyright (c) 2004-2006 The OSSP Project ## ## This file is part of OSSP uuid, a library for the generation ## of UUIDs which can found at http://www.ossp.org/pkg/lib/uuid/ Index: ossp-pkg/uuid/perl/uuid.pod RCS File: /v/ossp/cvs/ossp-pkg/uuid/perl/Attic/uuid.pod,v rcsdiff -q -kk '-r1.9' '-r1.10' -u '/v/ossp/cvs/ossp-pkg/uuid/perl/Attic/uuid.pod,v' 2>/dev/null --- uuid.pod 2005/09/02 14:00:05 1.9 +++ uuid.pod 2006/01/13 06:44:33 1.10 @@ -1,7 +1,7 @@ ## ## OSSP uuid - Universally Unique Identifier -## Copyright (c) 2004-2005 Ralf S. Engelschall -## Copyright (c) 2004-2005 The OSSP Project +## Copyright (c) 2004-2006 Ralf S. Engelschall +## Copyright (c) 2004-2006 The OSSP Project ## ## This file is part of OSSP uuid, a library for the generation ## of UUIDs which can found at http://www.ossp.org/pkg/lib/uuid/ Index: ossp-pkg/uuid/perl/uuid.tm RCS File: /v/ossp/cvs/ossp-pkg/uuid/perl/Attic/uuid.tm,v rcsdiff -q -kk '-r1.3' '-r1.4' -u '/v/ossp/cvs/ossp-pkg/uuid/perl/Attic/uuid.tm,v' 2>/dev/null --- uuid.tm 2004/12/31 19:20:39 1.3 +++ uuid.tm 2006/01/13 06:44:33 1.4 @@ -1,7 +1,7 @@ ## ## OSSP uuid - Universally Unique Identifier -## Copyright (c) 2004-2005 Ralf S. Engelschall -## Copyright (c) 2004-2005 The OSSP Project +## Copyright (c) 2004-2006 Ralf S. Engelschall +## Copyright (c) 2004-2006 The OSSP Project ## ## This file is part of OSSP uuid, a library for the generation ## of UUIDs which can found at http://www.ossp.org/pkg/lib/uuid/ Index: ossp-pkg/uuid/perl/uuid.ts RCS File: /v/ossp/cvs/ossp-pkg/uuid/perl/Attic/uuid.ts,v rcsdiff -q -kk '-r1.3' '-r1.4' -u '/v/ossp/cvs/ossp-pkg/uuid/perl/Attic/uuid.ts,v' 2>/dev/null --- uuid.ts 2005/08/31 08:55:18 1.3 +++ uuid.ts 2006/01/13 06:44:33 1.4 @@ -1,7 +1,7 @@ ## ## OSSP uuid - Universally Unique Identifier -## Copyright (c) 2004-2005 Ralf S. Engelschall -## Copyright (c) 2004-2005 The OSSP Project +## Copyright (c) 2004-2006 Ralf S. Engelschall +## Copyright (c) 2004-2006 The OSSP Project ## ## This file is part of OSSP uuid, a library for the generation ## of UUIDs which can found at http://www.ossp.org/pkg/lib/uuid/ Index: ossp-pkg/uuid/perl/uuid.xs RCS File: /v/ossp/cvs/ossp-pkg/uuid/perl/Attic/uuid.xs,v rcsdiff -q -kk '-r1.4' '-r1.5' -u '/v/ossp/cvs/ossp-pkg/uuid/perl/Attic/uuid.xs,v' 2>/dev/null --- uuid.xs 2005/01/23 12:38:10 1.4 +++ uuid.xs 2006/01/13 06:44:33 1.5 @@ -1,7 +1,7 @@ /* ** OSSP uuid - Universally Unique Identifier -** Copyright (c) 2004-2005 Ralf S. Engelschall -** Copyright (c) 2004-2005 The OSSP Project +** Copyright (c) 2004-2006 Ralf S. Engelschall +** Copyright (c) 2004-2006 The OSSP Project ** ** This file is part of OSSP uuid, a library for the generation ** of UUIDs which can found at http://www.ossp.org/pkg/lib/uuid/ Index: ossp-pkg/uuid/perl/uuid_compat.pm RCS File: /v/ossp/cvs/ossp-pkg/uuid/perl/Attic/uuid_compat.pm,v rcsdiff -q -kk '-r1.5' '-r1.6' -u '/v/ossp/cvs/ossp-pkg/uuid/perl/Attic/uuid_compat.pm,v' 2>/dev/null --- uuid_compat.pm 2006/01/12 20:32:43 1.5 +++ uuid_compat.pm 2006/01/13 06:44:33 1.6 @@ -1,7 +1,7 @@ ## ## OSSP uuid - Universally Unique Identifier -## Copyright (c) 2004-2005 Ralf S. Engelschall -## Copyright (c) 2004-2005 The OSSP Project +## Copyright (c) 2004-2006 Ralf S. Engelschall +## Copyright (c) 2004-2006 The OSSP Project ## Copyright (c) 2004 Piotr Roszatycki ## ## This file is part of OSSP uuid, a library for the generation Index: ossp-pkg/uuid/perl/uuid_compat.pod RCS File: /v/ossp/cvs/ossp-pkg/uuid/perl/Attic/uuid_compat.pod,v rcsdiff -q -kk '-r1.2' '-r1.3' -u '/v/ossp/cvs/ossp-pkg/uuid/perl/Attic/uuid_compat.pod,v' 2>/dev/null --- uuid_compat.pod 2005/12/06 07:38:49 1.2 +++ uuid_compat.pod 2006/01/13 06:44:33 1.3 @@ -1,7 +1,7 @@ ## ## OSSP uuid - Universally Unique Identifier -## Copyright (c) 2004-2005 Ralf S. Engelschall -## Copyright (c) 2004-2005 The OSSP Project +## Copyright (c) 2004-2006 Ralf S. Engelschall +## Copyright (c) 2004-2006 The OSSP Project ## ## This file is part of OSSP uuid, a library for the generation ## of UUIDs which can found at http://www.ossp.org/pkg/lib/uuid/ Index: ossp-pkg/uuid/perl/uuid_compat.ts RCS File: /v/ossp/cvs/ossp-pkg/uuid/perl/Attic/uuid_compat.ts,v rcsdiff -q -kk '-r1.1' '-r1.2' -u '/v/ossp/cvs/ossp-pkg/uuid/perl/Attic/uuid_compat.ts,v' 2>/dev/null --- uuid_compat.ts 2005/08/31 09:59:45 1.1 +++ uuid_compat.ts 2006/01/13 06:44:33 1.2 @@ -1,7 +1,7 @@ ## ## OSSP uuid - Universally Unique Identifier -## Copyright (c) 2004-2005 Ralf S. Engelschall -## Copyright (c) 2004-2005 The OSSP Project +## Copyright (c) 2004-2006 Ralf S. Engelschall +## Copyright (c) 2004-2006 The OSSP Project ## Copyright (c) 2004 Piotr Roszatycki ## ## This file is part of OSSP uuid, a library for the generation Index: ossp-pkg/uuid/pgsql/uuid.c RCS File: /v/ossp/cvs/ossp-pkg/uuid/pgsql/Attic/uuid.c,v rcsdiff -q -kk '-r1.1' '-r1.2' -u '/v/ossp/cvs/ossp-pkg/uuid/pgsql/Attic/uuid.c,v' 2>/dev/null --- uuid.c 2006/01/12 20:00:23 1.1 +++ uuid.c 2006/01/13 06:44:34 1.2 @@ -1,7 +1,7 @@ /* ** OSSP uuid - Universally Unique Identifier -** Copyright (c) 2004-2005 Ralf S. Engelschall -** Copyright (c) 2004-2005 The OSSP Project +** Copyright (c) 2004-2006 Ralf S. Engelschall +** Copyright (c) 2004-2006 The OSSP Project ** ** This file is part of OSSP uuid, a library for the generation ** of UUIDs which can found at http://www.ossp.org/pkg/lib/uuid/ Index: ossp-pkg/uuid/pgsql/uuid.sql.in RCS File: /v/ossp/cvs/ossp-pkg/uuid/pgsql/Attic/uuid.sql.in,v rcsdiff -q -kk '-r1.2' '-r1.3' -u '/v/ossp/cvs/ossp-pkg/uuid/pgsql/Attic/uuid.sql.in,v' 2>/dev/null --- uuid.sql.in 2006/01/12 21:01:02 1.2 +++ uuid.sql.in 2006/01/13 06:44:34 1.3 @@ -1,7 +1,7 @@ -- -- OSSP uuid - Universally Unique Identifier --- Copyright (c) 2004-2005 Ralf S. Engelschall --- Copyright (c) 2004-2005 The OSSP Project +-- Copyright (c) 2004-2006 Ralf S. Engelschall +-- Copyright (c) 2004-2006 The OSSP Project -- -- This file is part of OSSP uuid, a library for the generation -- of UUIDs which can found at http://www.ossp.org/pkg/lib/uuid/ Index: ossp-pkg/uuid/php/Makefile.local RCS File: /v/ossp/cvs/ossp-pkg/uuid/php/Attic/Makefile.local,v rcsdiff -q -kk '-r1.2' '-r1.3' -u '/v/ossp/cvs/ossp-pkg/uuid/php/Attic/Makefile.local,v' 2>/dev/null --- Makefile.local 2005/09/02 14:40:13 1.2 +++ Makefile.local 2006/01/13 06:44:34 1.3 @@ -1,7 +1,7 @@ ## ## OSSP uuid - Universally Unique Identifier -## Copyright (c) 2004-2005 Ralf S. Engelschall -## Copyright (c) 2004-2005 The OSSP Project +## Copyright (c) 2004-2006 Ralf S. Engelschall +## Copyright (c) 2004-2006 The OSSP Project ## ## This file is part of OSSP uuid, a library for the generation ## of UUIDs which can found at http://www.ossp.org/pkg/lib/uuid/ Index: ossp-pkg/uuid/php/config.m4 RCS File: /v/ossp/cvs/ossp-pkg/uuid/php/Attic/config.m4,v rcsdiff -q -kk '-r1.1' '-r1.2' -u '/v/ossp/cvs/ossp-pkg/uuid/php/Attic/config.m4,v' 2>/dev/null --- config.m4 2005/09/01 22:24:02 1.1 +++ config.m4 2006/01/13 06:44:34 1.2 @@ -1,7 +1,7 @@ dnl dnl OSSP uuid - Universally Unique Identifier -dnl Copyright (c) 2004-2005 Ralf S. Engelschall -dnl Copyright (c) 2004-2005 The OSSP Project +dnl Copyright (c) 2004-2006 Ralf S. Engelschall +dnl Copyright (c) 2004-2006 The OSSP Project dnl dnl This file is part of OSSP uuid, a library for the generation dnl of UUIDs which can found at http://www.ossp.org/pkg/lib/uuid/ Index: ossp-pkg/uuid/php/uuid.c RCS File: /v/ossp/cvs/ossp-pkg/uuid/php/Attic/uuid.c,v rcsdiff -q -kk '-r1.3' '-r1.4' -u '/v/ossp/cvs/ossp-pkg/uuid/php/Attic/uuid.c,v' 2>/dev/null --- uuid.c 2005/09/20 20:30:05 1.3 +++ uuid.c 2006/01/13 06:44:34 1.4 @@ -1,7 +1,7 @@ /* ** OSSP uuid - Universally Unique Identifier -** Copyright (c) 2004-2005 Ralf S. Engelschall -** Copyright (c) 2004-2005 The OSSP Project +** Copyright (c) 2004-2006 Ralf S. Engelschall +** Copyright (c) 2004-2006 The OSSP Project ** ** This file is part of OSSP uuid, a library for the generation ** of UUIDs which can found at http://www.ossp.org/pkg/lib/uuid/ Index: ossp-pkg/uuid/php/uuid.php4 RCS File: /v/ossp/cvs/ossp-pkg/uuid/php/Attic/uuid.php4,v rcsdiff -q -kk '-r1.1' '-r1.2' -u '/v/ossp/cvs/ossp-pkg/uuid/php/Attic/uuid.php4,v' 2>/dev/null --- uuid.php4 2005/09/01 22:24:02 1.1 +++ uuid.php4 2006/01/13 06:44:34 1.2 @@ -1,8 +1,8 @@ -## Copyright (c) 2004-2005 The OSSP Project +## Copyright (c) 2004-2006 Ralf S. Engelschall +## Copyright (c) 2004-2006 The OSSP Project ## ## This file is part of OSSP uuid, a library for the generation ## of UUIDs which can found at http://www.ossp.org/pkg/lib/uuid/ Index: ossp-pkg/uuid/php/uuid.php5 RCS File: /v/ossp/cvs/ossp-pkg/uuid/php/Attic/uuid.php5,v rcsdiff -q -kk '-r1.1' '-r1.2' -u '/v/ossp/cvs/ossp-pkg/uuid/php/Attic/uuid.php5,v' 2>/dev/null --- uuid.php5 2005/09/01 22:24:02 1.1 +++ uuid.php5 2006/01/13 06:44:34 1.2 @@ -1,8 +1,8 @@ -## Copyright (c) 2004-2005 The OSSP Project +## Copyright (c) 2004-2006 Ralf S. Engelschall +## Copyright (c) 2004-2006 The OSSP Project ## ## This file is part of OSSP uuid, a library for the generation ## of UUIDs which can found at http://www.ossp.org/pkg/lib/uuid/ Index: ossp-pkg/uuid/php/uuid.ts RCS File: /v/ossp/cvs/ossp-pkg/uuid/php/Attic/uuid.ts,v rcsdiff -q -kk '-r1.1' '-r1.2' -u '/v/ossp/cvs/ossp-pkg/uuid/php/Attic/uuid.ts,v' 2>/dev/null --- uuid.ts 2005/09/01 22:24:02 1.1 +++ uuid.ts 2006/01/13 06:44:34 1.2 @@ -1,8 +1,8 @@ -## Copyright (c) 2004-2005 The OSSP Project +## Copyright (c) 2004-2006 Ralf S. Engelschall +## Copyright (c) 2004-2006 The OSSP Project ## ## This file is part of OSSP uuid, a library for the generation ## of UUIDs which can found at http://www.ossp.org/pkg/lib/uuid/ Index: ossp-pkg/uuid/uuid++.cc RCS File: /v/ossp/cvs/ossp-pkg/uuid/Attic/uuid++.cc,v rcsdiff -q -kk '-r1.4' '-r1.5' -u '/v/ossp/cvs/ossp-pkg/uuid/Attic/uuid++.cc,v' 2>/dev/null --- uuid++.cc 2005/09/25 10:41:18 1.4 +++ uuid++.cc 2006/01/13 06:44:30 1.5 @@ -1,7 +1,7 @@ /* ** OSSP uuid - Universally Unique Identifier -** Copyright (c) 2004-2005 Ralf S. Engelschall -** Copyright (c) 2004-2005 The OSSP Project +** Copyright (c) 2004-2006 Ralf S. Engelschall +** Copyright (c) 2004-2006 The OSSP Project ** ** This file is part of OSSP uuid, a library for the generation ** of UUIDs which can found at http://www.ossp.org/pkg/lib/uuid/ Index: ossp-pkg/uuid/uuid++.hh RCS File: /v/ossp/cvs/ossp-pkg/uuid/Attic/uuid++.hh,v rcsdiff -q -kk '-r1.2' '-r1.3' -u '/v/ossp/cvs/ossp-pkg/uuid/Attic/uuid++.hh,v' 2>/dev/null --- uuid++.hh 2005/08/31 20:07:29 1.2 +++ uuid++.hh 2006/01/13 06:44:30 1.3 @@ -1,7 +1,7 @@ /* ** OSSP uuid - Universally Unique Identifier -** Copyright (c) 2004-2005 Ralf S. Engelschall -** Copyright (c) 2004-2005 The OSSP Project +** Copyright (c) 2004-2006 Ralf S. Engelschall +** Copyright (c) 2004-2006 The OSSP Project ** ** This file is part of OSSP uuid, a library for the generation ** of UUIDs which can found at http://www.ossp.org/pkg/lib/uuid/ Index: ossp-pkg/uuid/uuid++.pod RCS File: /v/ossp/cvs/ossp-pkg/uuid/Attic/uuid++.pod,v rcsdiff -q -kk '-r1.1' '-r1.2' -u '/v/ossp/cvs/ossp-pkg/uuid/Attic/uuid++.pod,v' 2>/dev/null --- uuid++.pod 2005/08/31 20:07:29 1.1 +++ uuid++.pod 2006/01/13 06:44:30 1.2 @@ -1,7 +1,7 @@ ## ## OSSP uuid - Universally Unique Identifier -## Copyright (c) 2004-2005 Ralf S. Engelschall -## Copyright (c) 2004-2005 The OSSP Project +## Copyright (c) 2004-2006 Ralf S. Engelschall +## Copyright (c) 2004-2006 The OSSP Project ## ## This file is part of OSSP uuid, a library for the generation ## of UUIDs which can found at http://www.ossp.org/pkg/lib/uuid/ Index: ossp-pkg/uuid/uuid-config.in RCS File: /v/ossp/cvs/ossp-pkg/uuid/Attic/uuid-config.in,v rcsdiff -q -kk '-r1.4' '-r1.5' -u '/v/ossp/cvs/ossp-pkg/uuid/Attic/uuid-config.in,v' 2>/dev/null --- uuid-config.in 2004/12/31 19:20:34 1.4 +++ uuid-config.in 2006/01/13 06:44:30 1.5 @@ -1,8 +1,8 @@ #!/bin/sh ## ## OSSP uuid - Universally Unique Identifier -## Copyright (c) 2004-2005 Ralf S. Engelschall -## Copyright (c) 2004-2005 The OSSP Project +## Copyright (c) 2004-2006 Ralf S. Engelschall +## Copyright (c) 2004-2006 The OSSP Project ## ## This file is part of OSSP uuid, a library for the generation ## of UUIDs which can found at http://www.ossp.org/pkg/lib/uuid/ Index: ossp-pkg/uuid/uuid-config.pod RCS File: /v/ossp/cvs/ossp-pkg/uuid/Attic/uuid-config.pod,v rcsdiff -q -kk '-r1.3' '-r1.4' -u '/v/ossp/cvs/ossp-pkg/uuid/Attic/uuid-config.pod,v' 2>/dev/null --- uuid-config.pod 2004/12/31 19:20:34 1.3 +++ uuid-config.pod 2006/01/13 06:44:30 1.4 @@ -1,8 +1,8 @@ #!/bin/sh ## ## OSSP uuid - Universally Unique Identifier -## Copyright (c) 2004-2005 Ralf S. Engelschall -## Copyright (c) 2004-2005 The OSSP Project +## Copyright (c) 2004-2006 Ralf S. Engelschall +## Copyright (c) 2004-2006 The OSSP Project ## ## This file is part of OSSP uuid, a library for the generation ## of UUIDs which can found at http://www.ossp.org/pkg/lib/uuid/ Index: ossp-pkg/uuid/uuid.ac RCS File: /v/ossp/cvs/ossp-pkg/uuid/Attic/uuid.ac,v rcsdiff -q -kk '-r1.19' '-r1.20' -u '/v/ossp/cvs/ossp-pkg/uuid/Attic/uuid.ac,v' 2>/dev/null --- uuid.ac 2006/01/12 20:31:50 1.19 +++ uuid.ac 2006/01/13 06:44:30 1.20 @@ -1,7 +1,7 @@ dnl ## dnl ## OSSP uuid - Universally Unique Identifier -dnl ## Copyright (c) 2004-2005 Ralf S. Engelschall -dnl ## Copyright (c) 2004-2005 The OSSP Project +dnl ## Copyright (c) 2004-2006 Ralf S. Engelschall +dnl ## Copyright (c) 2004-2006 The OSSP Project dnl ## dnl ## This file is part of OSSP uuid, a library for the generation dnl ## of UUIDs which can found at http://www.ossp.org/pkg/lib/uuid/ Index: ossp-pkg/uuid/uuid.c RCS File: /v/ossp/cvs/ossp-pkg/uuid/Attic/uuid.c,v rcsdiff -q -kk '-r1.56' '-r1.57' -u '/v/ossp/cvs/ossp-pkg/uuid/Attic/uuid.c,v' 2>/dev/null --- uuid.c 2005/09/24 10:28:32 1.56 +++ uuid.c 2006/01/13 06:44:30 1.57 @@ -1,7 +1,7 @@ /* ** OSSP uuid - Universally Unique Identifier -** Copyright (c) 2004-2005 Ralf S. Engelschall -** Copyright (c) 2004-2005 The OSSP Project +** Copyright (c) 2004-2006 Ralf S. Engelschall +** Copyright (c) 2004-2006 The OSSP Project ** ** This file is part of OSSP uuid, a library for the generation ** of UUIDs which can found at http://www.ossp.org/pkg/lib/uuid/ Index: ossp-pkg/uuid/uuid.h.in RCS File: /v/ossp/cvs/ossp-pkg/uuid/Attic/uuid.h.in,v rcsdiff -q -kk '-r1.9' '-r1.10' -u '/v/ossp/cvs/ossp-pkg/uuid/Attic/uuid.h.in,v' 2>/dev/null --- uuid.h.in 2005/08/31 19:20:43 1.9 +++ uuid.h.in 2006/01/13 06:44:30 1.10 @@ -1,7 +1,7 @@ /* ** OSSP uuid - Universally Unique Identifier -** Copyright (c) 2004-2005 Ralf S. Engelschall -** Copyright (c) 2004-2005 The OSSP Project +** Copyright (c) 2004-2006 Ralf S. Engelschall +** Copyright (c) 2004-2006 The OSSP Project ** ** This file is part of OSSP uuid, a library for the generation ** of UUIDs which can found at http://www.ossp.org/pkg/lib/uuid/ Index: ossp-pkg/uuid/uuid.pc.in RCS File: /v/ossp/cvs/ossp-pkg/uuid/Attic/uuid.pc.in,v rcsdiff -q -kk '-r1.1' '-r1.2' -u '/v/ossp/cvs/ossp-pkg/uuid/Attic/uuid.pc.in,v' 2>/dev/null --- uuid.pc.in 2005/08/31 11:16:18 1.1 +++ uuid.pc.in 2006/01/13 06:44:30 1.2 @@ -1,7 +1,7 @@ ## ## OSSP uuid - Universally Unique Identifier -## Copyright (c) 2004-2005 Ralf S. Engelschall -## Copyright (c) 2004-2005 The OSSP Project +## Copyright (c) 2004-2006 Ralf S. Engelschall +## Copyright (c) 2004-2006 The OSSP Project ## ## This file is part of OSSP uuid, a library for the generation ## of UUIDs which can found at http://www.ossp.org/pkg/lib/uuid/ Index: ossp-pkg/uuid/uuid.pod RCS File: /v/ossp/cvs/ossp-pkg/uuid/Attic/uuid.pod,v rcsdiff -q -kk '-r1.32' '-r1.33' -u '/v/ossp/cvs/ossp-pkg/uuid/Attic/uuid.pod,v' 2>/dev/null --- uuid.pod 2006/01/12 19:59:36 1.32 +++ uuid.pod 2006/01/13 06:44:30 1.33 @@ -1,7 +1,7 @@ ## ## OSSP uuid - Universally Unique Identifier -## Copyright (c) 2004-2005 Ralf S. Engelschall -## Copyright (c) 2004-2005 The OSSP Project +## Copyright (c) 2004-2006 Ralf S. Engelschall +## Copyright (c) 2004-2006 The OSSP Project ## ## This file is part of OSSP uuid, a library for the generation ## of UUIDs which can found at http://www.ossp.org/pkg/lib/uuid/ Index: ossp-pkg/uuid/uuid_ac.h RCS File: /v/ossp/cvs/ossp-pkg/uuid/Attic/uuid_ac.h,v rcsdiff -q -kk '-r1.4' '-r1.5' -u '/v/ossp/cvs/ossp-pkg/uuid/Attic/uuid_ac.h,v' 2>/dev/null --- uuid_ac.h 2005/03/29 19:01:41 1.4 +++ uuid_ac.h 2006/01/13 06:44:30 1.5 @@ -1,7 +1,7 @@ /* ** OSSP uuid - Universally Unique Identifier -** Copyright (c) 2004-2005 Ralf S. Engelschall -** Copyright (c) 2004-2005 The OSSP Project +** Copyright (c) 2004-2006 Ralf S. Engelschall +** Copyright (c) 2004-2006 The OSSP Project ** ** This file is part of OSSP uuid, a library for the generation ** of UUIDs which can found at http://www.ossp.org/pkg/lib/uuid/ Index: ossp-pkg/uuid/uuid_bm.h RCS File: /v/ossp/cvs/ossp-pkg/uuid/Attic/uuid_bm.h,v rcsdiff -q -kk '-r1.5' '-r1.6' -u '/v/ossp/cvs/ossp-pkg/uuid/Attic/uuid_bm.h,v' 2>/dev/null --- uuid_bm.h 2005/03/29 19:01:41 1.5 +++ uuid_bm.h 2006/01/13 06:44:30 1.6 @@ -1,7 +1,7 @@ /* ** OSSP uuid - Universally Unique Identifier -** Copyright (c) 2004-2005 Ralf S. Engelschall -** Copyright (c) 2004-2005 The OSSP Project +** Copyright (c) 2004-2006 Ralf S. Engelschall +** Copyright (c) 2004-2006 The OSSP Project ** ** This file is part of OSSP uuid, a library for the generation ** of UUIDs which can found at http://www.ossp.org/pkg/lib/uuid/ Index: ossp-pkg/uuid/uuid_cli.c RCS File: /v/ossp/cvs/ossp-pkg/uuid/Attic/uuid_cli.c,v rcsdiff -q -kk '-r1.19' '-r1.20' -u '/v/ossp/cvs/ossp-pkg/uuid/Attic/uuid_cli.c,v' 2>/dev/null --- uuid_cli.c 2005/03/29 19:01:41 1.19 +++ uuid_cli.c 2006/01/13 06:44:30 1.20 @@ -1,7 +1,7 @@ /* ** OSSP uuid - Universally Unique Identifier -** Copyright (c) 2004-2005 Ralf S. Engelschall -** Copyright (c) 2004-2005 The OSSP Project +** Copyright (c) 2004-2006 Ralf S. Engelschall +** Copyright (c) 2004-2006 The OSSP Project ** ** This file is part of OSSP uuid, a library for the generation ** of UUIDs which can found at http://www.ossp.org/pkg/lib/uuid/ Index: ossp-pkg/uuid/uuid_cli.pod RCS File: /v/ossp/cvs/ossp-pkg/uuid/Attic/uuid_cli.pod,v rcsdiff -q -kk '-r1.23' '-r1.24' -u '/v/ossp/cvs/ossp-pkg/uuid/Attic/uuid_cli.pod,v' 2>/dev/null --- uuid_cli.pod 2005/09/02 14:00:00 1.23 +++ uuid_cli.pod 2006/01/13 06:44:30 1.24 @@ -1,7 +1,7 @@ ## ## OSSP uuid - Universally Unique Identifier -## Copyright (c) 2004-2005 Ralf S. Engelschall -## Copyright (c) 2004-2005 The OSSP Project +## Copyright (c) 2004-2006 Ralf S. Engelschall +## Copyright (c) 2004-2006 The OSSP Project ## ## This file is part of OSSP uuid, a library for the generation ## of UUIDs which can found at http://www.ossp.org/pkg/lib/uuid/ Index: ossp-pkg/uuid/uuid_dce.c RCS File: /v/ossp/cvs/ossp-pkg/uuid/Attic/uuid_dce.c,v rcsdiff -q -kk '-r1.3' '-r1.4' -u '/v/ossp/cvs/ossp-pkg/uuid/Attic/uuid_dce.c,v' 2>/dev/null --- uuid_dce.c 2005/03/29 19:01:41 1.3 +++ uuid_dce.c 2006/01/13 06:44:30 1.4 @@ -1,7 +1,7 @@ /* ** OSSP uuid - Universally Unique Identifier -** Copyright (c) 2004-2005 Ralf S. Engelschall -** Copyright (c) 2004-2005 The OSSP Project +** Copyright (c) 2004-2006 Ralf S. Engelschall +** Copyright (c) 2004-2006 The OSSP Project ** ** This file is part of OSSP uuid, a library for the generation ** of UUIDs which can found at http://www.ossp.org/pkg/lib/uuid/ Index: ossp-pkg/uuid/uuid_dce.h RCS File: /v/ossp/cvs/ossp-pkg/uuid/Attic/uuid_dce.h,v rcsdiff -q -kk '-r1.2' '-r1.3' -u '/v/ossp/cvs/ossp-pkg/uuid/Attic/uuid_dce.h,v' 2>/dev/null --- uuid_dce.h 2004/12/31 19:20:34 1.2 +++ uuid_dce.h 2006/01/13 06:44:31 1.3 @@ -1,7 +1,7 @@ /* ** OSSP uuid - Universally Unique Identifier -** Copyright (c) 2004-2005 Ralf S. Engelschall -** Copyright (c) 2004-2005 The OSSP Project +** Copyright (c) 2004-2006 Ralf S. Engelschall +** Copyright (c) 2004-2006 The OSSP Project ** ** This file is part of OSSP uuid, a library for the generation ** of UUIDs which can found at http://www.ossp.org/pkg/lib/uuid/ Index: ossp-pkg/uuid/uuid_mac.c RCS File: /v/ossp/cvs/ossp-pkg/uuid/Attic/uuid_mac.c,v rcsdiff -q -kk '-r1.8' '-r1.9' -u '/v/ossp/cvs/ossp-pkg/uuid/Attic/uuid_mac.c,v' 2>/dev/null --- uuid_mac.c 2005/06/15 18:34:04 1.8 +++ uuid_mac.c 2006/01/13 06:44:31 1.9 @@ -1,7 +1,7 @@ /* ** OSSP uuid - Universally Unique Identifier -** Copyright (c) 2004-2005 Ralf S. Engelschall -** Copyright (c) 2004-2005 The OSSP Project +** Copyright (c) 2004-2006 Ralf S. Engelschall +** Copyright (c) 2004-2006 The OSSP Project ** ** This file is part of OSSP uuid, a library for the generation ** of UUIDs which can found at http://www.ossp.org/pkg/lib/uuid/ Index: ossp-pkg/uuid/uuid_mac.h RCS File: /v/ossp/cvs/ossp-pkg/uuid/Attic/uuid_mac.h,v rcsdiff -q -kk '-r1.3' '-r1.4' -u '/v/ossp/cvs/ossp-pkg/uuid/Attic/uuid_mac.h,v' 2>/dev/null --- uuid_mac.h 2004/12/31 19:20:34 1.3 +++ uuid_mac.h 2006/01/13 06:44:31 1.4 @@ -1,7 +1,7 @@ /* ** OSSP uuid - Universally Unique Identifier -** Copyright (c) 2004-2005 Ralf S. Engelschall -** Copyright (c) 2004-2005 The OSSP Project +** Copyright (c) 2004-2006 Ralf S. Engelschall +** Copyright (c) 2004-2006 The OSSP Project ** ** This file is part of OSSP uuid, a library for the generation ** of UUIDs which can found at http://www.ossp.org/pkg/lib/uuid/ Index: ossp-pkg/uuid/uuid_md5.c RCS File: /v/ossp/cvs/ossp-pkg/uuid/Attic/uuid_md5.c,v rcsdiff -q -kk '-r1.11' '-r1.12' -u '/v/ossp/cvs/ossp-pkg/uuid/Attic/uuid_md5.c,v' 2>/dev/null --- uuid_md5.c 2005/03/29 19:01:41 1.11 +++ uuid_md5.c 2006/01/13 06:44:31 1.12 @@ -1,7 +1,7 @@ /* ** OSSP uuid - Universally Unique Identifier -** Copyright (c) 2004-2005 Ralf S. Engelschall -** Copyright (c) 2004-2005 The OSSP Project +** Copyright (c) 2004-2006 Ralf S. Engelschall +** Copyright (c) 2004-2006 The OSSP Project ** ** This file is part of OSSP uuid, a library for the generation ** of UUIDs which can found at http://www.ossp.org/pkg/lib/uuid/ Index: ossp-pkg/uuid/uuid_md5.h RCS File: /v/ossp/cvs/ossp-pkg/uuid/Attic/uuid_md5.h,v rcsdiff -q -kk '-r1.4' '-r1.5' -u '/v/ossp/cvs/ossp-pkg/uuid/Attic/uuid_md5.h,v' 2>/dev/null --- uuid_md5.h 2004/12/31 19:20:34 1.4 +++ uuid_md5.h 2006/01/13 06:44:31 1.5 @@ -1,7 +1,7 @@ /* ** OSSP uuid - Universally Unique Identifier -** Copyright (c) 2004-2005 Ralf S. Engelschall -** Copyright (c) 2004-2005 The OSSP Project +** Copyright (c) 2004-2006 Ralf S. Engelschall +** Copyright (c) 2004-2006 The OSSP Project ** ** This file is part of OSSP uuid, a library for the generation ** of UUIDs which can found at http://www.ossp.org/pkg/lib/uuid/ Index: ossp-pkg/uuid/uuid_prng.c RCS File: /v/ossp/cvs/ossp-pkg/uuid/Attic/uuid_prng.c,v co -q -kk -p'1.11' '/v/ossp/cvs/ossp-pkg/uuid/Attic/uuid_prng.c,v' | diff -u /dev/null - -L'ossp-pkg/uuid/uuid_prng.c' 2>/dev/null --- ossp-pkg/uuid/uuid_prng.c +++ - 2024-05-09 18:48:24.440919649 +0200 @@ -0,0 +1,172 @@ +/* +** OSSP uuid - Universally Unique Identifier +** Copyright (c) 2004-2006 Ralf S. Engelschall +** Copyright (c) 2004-2006 The OSSP Project +** +** This file is part of OSSP uuid, a library for the generation +** of UUIDs which can found at http://www.ossp.org/pkg/lib/uuid/ +** +** Permission to use, copy, modify, and distribute this software for +** any purpose with or without fee is hereby granted, provided that +** the above copyright notice and this permission notice appear in all +** copies. +** +** THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED +** WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +** MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +** IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR +** CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF +** USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +** ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +** OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT +** OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +** SUCH DAMAGE. +** +** uuid_prng.c: PRNG API implementation +*/ + +#include +#include +#include +#include +#include +#include + +#include "uuid_prng.h" +#include "uuid_md5.h" + +struct prng_st { + int dev; /* system PRNG device */ + md5_t *md5; /* local MD5 PRNG engine */ + long cnt; /* time resolution compensation counter */ +}; + +prng_rc_t prng_create(prng_t **prng) +{ + int fd = -1; + struct timeval tv; + pid_t pid; + size_t i; + + /* sanity check argument(s) */ + if (prng == NULL) + return PRNG_RC_ARG; + + /* allocate object */ + if ((*prng = (prng_t *)malloc(sizeof(prng_t))) == NULL) + return PRNG_RC_MEM; + + /* try to open the system PRNG device */ + (*prng)->dev = -1; + if ((fd = open("/dev/urandom", O_RDONLY)) == -1) + fd = open("/dev/random", O_RDONLY|O_NONBLOCK); + if (fd != -1) { + (void)fcntl(fd, F_SETFD, FD_CLOEXEC); + (*prng)->dev = fd; + } + + /* initialize MD5 engine */ + if (md5_create(&((*prng)->md5)) != MD5_RC_OK) + return PRNG_RC_INT; + + /* initialize time resolution compensation counter */ + (*prng)->cnt = 0; + + /* seed the C library PRNG once */ + (void)gettimeofday(&tv, NULL); + pid = getpid(); + srand((unsigned int)( + ((unsigned int)pid << 16) + ^ (unsigned int)pid + ^ (unsigned int)tv.tv_sec + ^ (unsigned int)tv.tv_usec)); + for (i = (unsigned int)((tv.tv_sec ^ tv.tv_usec) & 0x1F); i > 0; i--) + (void)rand(); + + return PRNG_RC_OK; +} + +prng_rc_t prng_data(prng_t *prng, void *data_ptr, size_t data_len) +{ + size_t n; + unsigned char *p; + struct { + struct timeval tv; + long cnt; + int rnd; + } entropy; + unsigned char md5_buf[MD5_LEN_BIN]; + unsigned char *md5_ptr; + size_t md5_len; + int retries; + int i; + + /* sanity check argument(s) */ + if (prng == NULL || data_len == 0) + return PRNG_RC_ARG; + + /* prepare for generation */ + p = (unsigned char *)data_ptr; + n = data_len; + + /* approach 1: try to gather data via stronger system PRNG device */ + if (prng->dev != -1) { + retries = 0; + while (n > 0) { + i = read(prng->dev, (void *)p, n); + if (i <= 0) { + if (retries++ > 16) + break; + continue; + } + retries = 0; + n -= (unsigned int)i; + p += (unsigned int)i; + } + } + + /* approach 2: try to gather data via weaker libc PRNG API. */ + while (n > 0) { + /* gather new entropy */ + (void)gettimeofday(&(entropy.tv), NULL); /* source: libc time */ + entropy.rnd = rand(); /* source: libc PRNG */ + entropy.cnt = prng->cnt++; /* source: local counter */ + + /* pass entropy into MD5 engine */ + if (md5_update(prng->md5, (void *)&entropy, sizeof(entropy)) != MD5_RC_OK) + return PRNG_RC_INT; + + /* store MD5 engine state as PRN output */ + md5_ptr = md5_buf; + md5_len = sizeof(md5_buf); + if (md5_store(prng->md5, (void **)(void *)&md5_ptr, &md5_len) != MD5_RC_OK) + return PRNG_RC_INT; + for (i = 0; i < MD5_LEN_BIN && n > 0; i++, n--) + *p++ ^= md5_buf[i]; /* intentionally no assignment because arbitrary + caller buffer content is leveraged, too */ + } + + return PRNG_RC_OK; +} + +prng_rc_t prng_destroy(prng_t *prng) +{ + /* sanity check argument(s) */ + if (prng == NULL) + return PRNG_RC_ARG; + + /* close PRNG device */ + if (prng->dev != -1) + close(prng->dev); + + /* destroy MD5 engine */ + md5_destroy(prng->md5); + + /* free object */ + free(prng); + + return PRNG_RC_OK; +} + Index: ossp-pkg/uuid/uuid_prng.h RCS File: /v/ossp/cvs/ossp-pkg/uuid/Attic/uuid_prng.h,v rcsdiff -q -kk '-r1.3' '-r1.4' -u '/v/ossp/cvs/ossp-pkg/uuid/Attic/uuid_prng.h,v' 2>/dev/null --- uuid_prng.h 2005/08/30 15:26:07 1.3 +++ uuid_prng.h 2006/01/13 06:44:31 1.4 @@ -1,7 +1,7 @@ /* ** OSSP uuid - Universally Unique Identifier -** Copyright (c) 2004-2005 Ralf S. Engelschall -** Copyright (c) 2004-2005 The OSSP Project +** Copyright (c) 2004-2006 Ralf S. Engelschall +** Copyright (c) 2004-2006 The OSSP Project ** ** This file is part of OSSP uuid, a library for the generation ** of UUIDs which can found at http://www.ossp.org/pkg/lib/uuid/ Index: ossp-pkg/uuid/uuid_sha1.c RCS File: /v/ossp/cvs/ossp-pkg/uuid/Attic/uuid_sha1.c,v rcsdiff -q -kk '-r1.2' '-r1.3' -u '/v/ossp/cvs/ossp-pkg/uuid/Attic/uuid_sha1.c,v' 2>/dev/null --- uuid_sha1.c 2005/03/29 19:01:41 1.2 +++ uuid_sha1.c 2006/01/13 06:44:31 1.3 @@ -1,7 +1,7 @@ /* ** OSSP uuid - Universally Unique Identifier -** Copyright (c) 2004-2005 Ralf S. Engelschall -** Copyright (c) 2004-2005 The OSSP Project +** Copyright (c) 2004-2006 Ralf S. Engelschall +** Copyright (c) 2004-2006 The OSSP Project ** ** This file is part of OSSP uuid, a library for the generation ** of UUIDs which can found at http://www.ossp.org/pkg/lib/uuid/ Index: ossp-pkg/uuid/uuid_sha1.h RCS File: /v/ossp/cvs/ossp-pkg/uuid/Attic/uuid_sha1.h,v rcsdiff -q -kk '-r1.1' '-r1.2' -u '/v/ossp/cvs/ossp-pkg/uuid/Attic/uuid_sha1.h,v' 2>/dev/null --- uuid_sha1.h 2005/01/23 11:28:51 1.1 +++ uuid_sha1.h 2006/01/13 06:44:31 1.2 @@ -1,7 +1,7 @@ /* ** OSSP uuid - Universally Unique Identifier -** Copyright (c) 2004-2005 Ralf S. Engelschall -** Copyright (c) 2004-2005 The OSSP Project +** Copyright (c) 2004-2006 Ralf S. Engelschall +** Copyright (c) 2004-2006 The OSSP Project ** ** This file is part of OSSP uuid, a library for the generation ** of UUIDs which can found at http://www.ossp.org/pkg/lib/uuid/ Index: ossp-pkg/uuid/uuid_str.c RCS File: /v/ossp/cvs/ossp-pkg/uuid/Attic/uuid_str.c,v rcsdiff -q -kk '-r1.5' '-r1.6' -u '/v/ossp/cvs/ossp-pkg/uuid/Attic/uuid_str.c,v' 2>/dev/null --- uuid_str.c 2005/03/29 19:01:41 1.5 +++ uuid_str.c 2006/01/13 06:44:31 1.6 @@ -1,7 +1,7 @@ /* ** OSSP uuid - Universally Unique Identifier -** Copyright (c) 2004-2005 Ralf S. Engelschall -** Copyright (c) 2004-2005 The OSSP Project +** Copyright (c) 2004-2006 Ralf S. Engelschall +** Copyright (c) 2004-2006 The OSSP Project ** ** This file is part of OSSP uuid, a library for the generation ** of UUIDs which can found at http://www.ossp.org/pkg/lib/uuid/ Index: ossp-pkg/uuid/uuid_str.h RCS File: /v/ossp/cvs/ossp-pkg/uuid/Attic/uuid_str.h,v rcsdiff -q -kk '-r1.2' '-r1.3' -u '/v/ossp/cvs/ossp-pkg/uuid/Attic/uuid_str.h,v' 2>/dev/null --- uuid_str.h 2004/12/31 19:20:34 1.2 +++ uuid_str.h 2006/01/13 06:44:31 1.3 @@ -1,7 +1,7 @@ /* ** OSSP uuid - Universally Unique Identifier -** Copyright (c) 2004-2005 Ralf S. Engelschall -** Copyright (c) 2004-2005 The OSSP Project +** Copyright (c) 2004-2006 Ralf S. Engelschall +** Copyright (c) 2004-2006 The OSSP Project ** ** This file is part of OSSP uuid, a library for the generation ** of UUIDs which can found at http://www.ossp.org/pkg/lib/uuid/