~ubuntu-branches/ubuntu/intrepid/git-core/intrepid-security

« back to all changes in this revision

Viewing changes to mozilla-sha1/sha1.c

  • Committer: Package Import Robot
  • Author(s): Gerrit Pape
  • Date: 2007-10-04 08:27:01 UTC
  • mfrom: (1.1.23)
  • Revision ID: package-import@ubuntu.com-20071004082701-rsd058ontoqz4i30
Tags: 1:1.5.3.4-1
new upstream point release (closes: #445188).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* 
 
1
/*
2
2
 * The contents of this file are subject to the Mozilla Public
3
3
 * License Version 1.1 (the "License"); you may not use this file
4
4
 * except in compliance with the License. You may obtain a copy of
5
5
 * the License at http://www.mozilla.org/MPL/
6
 
 * 
 
6
 *
7
7
 * Software distributed under the License is distributed on an "AS
8
8
 * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
9
9
 * implied. See the License for the specific language governing
10
10
 * rights and limitations under the License.
11
 
 * 
 
11
 *
12
12
 * The Original Code is SHA 180-1 Reference Implementation (Compact version)
13
 
 * 
 
13
 *
14
14
 * The Initial Developer of the Original Code is Paul Kocher of
15
 
 * Cryptography Research.  Portions created by Paul Kocher are 
 
15
 * Cryptography Research.  Portions created by Paul Kocher are
16
16
 * Copyright (C) 1995-9 by Cryptography Research, Inc.  All
17
17
 * Rights Reserved.
18
 
 * 
 
18
 *
19
19
 * Contributor(s):
20
20
 *
21
21
 *     Paul Kocher
22
 
 * 
 
22
 *
23
23
 * Alternatively, the contents of this file may be used under the
24
24
 * terms of the GNU General Public License Version 2 or later (the
25
 
 * "GPL"), in which case the provisions of the GPL are applicable 
26
 
 * instead of those above.  If you wish to allow use of your 
 
25
 * "GPL"), in which case the provisions of the GPL are applicable
 
26
 * instead of those above.  If you wish to allow use of your
27
27
 * version of this file only under the terms of the GPL and not to
28
28
 * allow others to use your version of this file under the MPL,
29
29
 * indicate your decision by deleting the provisions above and
149
149
  ctx->H[3] += D;
150
150
  ctx->H[4] += E;
151
151
}
152