~ubuntu-branches/ubuntu/lucid/mysql-dfsg-5.1/lucid-security

« back to all changes in this revision

Viewing changes to include/sha1.h

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2012-02-22 22:33:55 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20120222223355-or06x1euyk8n0ldi
Tags: 5.1.61-0ubuntu0.10.04.1
* SECURITY UPDATE: Update to 5.1.61 to fix multiple security issues
  (LP: #937869)
  - http://www.oracle.com/technetwork/topics/security/cpujan2012-366304.html
  - CVE-2011-2262
  - CVE-2012-0075
  - CVE-2012-0112
  - CVE-2012-0113
  - CVE-2012-0114
  - CVE-2012-0115
  - CVE-2012-0116
  - CVE-2012-0117
  - CVE-2012-0118
  - CVE-2012-0119
  - CVE-2012-0120
  - CVE-2012-0484
  - CVE-2012-0485
  - CVE-2012-0486
  - CVE-2012-0487
  - CVE-2012-0488
  - CVE-2012-0489
  - CVE-2012-0490
  - CVE-2012-0491
  - CVE-2012-0492
  - CVE-2012-0493
  - CVE-2012-0494
  - CVE-2012-0495
  - CVE-2012-0496
* Dropped patches unnecessary with 5.1.61:
  - debian/patches/90_mysql_safer_strmov.dpatch
  - debian/patches/51_ssl_test_certs.dpatch
  - debian/patches/52_CVE-2009-4030.dpatch
  - debian/patches/53_CVE-2009-4484.dpatch
  - debian/patches/54_CVE-2008-7247.dpatch
  - debian/patches/55_CVE-2010-1621.dpatch
  - debian/patches/56_CVE-2010-1850.dpatch
  - debian/patches/57_CVE-2010-1849.dpatch
  - debian/patches/58_CVE-2010-1848.dpatch
  - debian/patches/59_CVE-2010-1626.dpatch
  - debian/patches/60_CVE-2010-2008.dpatch
  - debian/patches/60_CVE-2010-3677.dpatch
  - debian/patches/60_CVE-2010-3678.dpatch
  - debian/patches/60_CVE-2010-3679.dpatch
  - debian/patches/60_CVE-2010-3680.dpatch
  - debian/patches/60_CVE-2010-3681.dpatch
  - debian/patches/60_CVE-2010-3682.dpatch
  - debian/patches/60_CVE-2010-3683.dpatch
  - debian/patches/60_CVE-2010-3833.dpatch
  - debian/patches/60_CVE-2010-3834.dpatch
  - debian/patches/60_CVE-2010-3835.dpatch
  - debian/patches/60_CVE-2010-3836.dpatch
  - debian/patches/60_CVE-2010-3837.dpatch
  - debian/patches/60_CVE-2010-3838.dpatch
  - debian/patches/60_CVE-2010-3839.dpatch
  - debian/patches/60_CVE-2010-3840.dpatch
  - debian/patches/61_disable_longfilename_test.dpatch
  - debian/patches/62_alter_table_fix.dpatch
  - debian/patches/63_cherrypick-upstream-49479.dpatch
  - debian/patches/10_readline_build_fix.dpatch
* debian/mysql-client-5.1.docs: removed EXCEPTIONS-CLIENT file
* debian/mysql-server-5.1.docs,debian/libmysqlclient16.docs,
  debian/libmysqlclient-dev.docs: removed, no longer necessary.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
 
7
7
 This program is distributed in the hope that it will be useful,
8
8
 but WITHOUT ANY WARRANTY; without even the implied warranty of
9
 
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
9
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10
10
 GNU General Public License for more details.
11
11
 
12
12
 You should have received a copy of the GNU General Public License
13
13
 along with this program; if not, write to the Free Software
14
 
 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
 
14
 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
15
*/
15
16
 
16
17
/*
17
18
 This is the header file for code which implements the Secure
25
26
 Please read the file sha1.c for more information.
26
27
 
27
28
 Modified 2002 by Peter Zaitsev to better follow MySQL standards
 
29
 
 
30
  Original Source from: http://www.faqs.org/rfcs/rfc3174.html
 
31
 
 
32
  Copyright (C) The Internet Society (2001).  All Rights Reserved.
 
33
 
 
34
  This document and translations of it may be copied and furnished to
 
35
  others, and derivative works that comment on or otherwise explain it
 
36
  or assist in its implementation may be prepared, copied, published
 
37
  and distributed, in whole or in part, without restriction of any
 
38
  kind, provided that the above copyright notice and this paragraph are
 
39
  included on all such copies and derivative works.  However, this
 
40
  document itself may not be modified in any way, such as by removing
 
41
  the copyright notice or references to the Internet Society or other
 
42
  Internet organizations, except as needed for the purpose of
 
43
  developing Internet standards in which case the procedures for
 
44
  copyrights defined in the Internet Standards process must be
 
45
  followed, or as required to translate it into languages other than
 
46
  English.
 
47
 
 
48
  The limited permissions granted above are perpetual and will not be
 
49
  revoked by the Internet Society or its successors or assigns.
 
50
 
 
51
  This document and the information contained herein is provided on an
 
52
  "AS IS" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING
 
53
  TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING
 
54
  BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION
 
55
  HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF
 
56
  MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
 
57
 
 
58
  Acknowledgement 
 
59
  Funding for the RFC Editor function is currently provided by the 
 
60
  Internet Society. 
28
61
*/
29
62
 
30
63