src/java.base/share/classes/sun/security/provider/SHA.java
author weijun
Wed, 01 Aug 2018 13:35:08 +0800
changeset 51272 9d92ff04a29c
parent 47216 71c04702a3d5
child 51504 c9a3e3cac9c7
permissions -rw-r--r--
8208602: Cannot read PEM X.509 cert if there is whitespace after the header or footer Reviewed-by: xuelei
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
14342
8435a30053c1 7197491: update copyright year to match last edit in jdk8 jdk repository
alanb
parents: 12685
diff changeset
     2
 * Copyright (c) 1996, 2012, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package sun.security.provider;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
31671
362e0c0acece 8076112: Add @HotSpotIntrinsicCandidate annotation to indicate methods for which Java Runtime has intrinsics
zmajo
parents: 25859
diff changeset
    28
import java.util.Objects;
362e0c0acece 8076112: Add @HotSpotIntrinsicCandidate annotation to indicate methods for which Java Runtime has intrinsics
zmajo
parents: 25859
diff changeset
    29
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import static sun.security.provider.ByteArrayAccess.*;
31671
362e0c0acece 8076112: Add @HotSpotIntrinsicCandidate annotation to indicate methods for which Java Runtime has intrinsics
zmajo
parents: 25859
diff changeset
    31
import jdk.internal.HotSpotIntrinsicCandidate;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * This class implements the Secure Hash Algorithm (SHA) developed by
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * the National Institute of Standards and Technology along with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * National Security Agency.  This is the updated version of SHA
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * fip-180 as superseded by fip-180-1.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * <p>It implement JavaSecurity MessageDigest, and can be used by in
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * the Java Security framework, as a pluggable implementation, as a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * filter for the digest stream classes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * @author      Roger Riggs
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * @author      Benjamin Renaud
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * @author      Andreas Sterbenz
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
public final class SHA extends DigestBase {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
    // Buffer of int's and count of characters accumulated
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
    // 64 bytes are included in each hash block so the low order
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
    // bits of count are used to know how to pack the bytes into ints
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
    // and to know when to compute the block and start the next one.
12685
8a448b5b9006 4963723: Implement SHA-224
valeriep
parents: 5506
diff changeset
    53
    private int[] W;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
    // state of this
12685
8a448b5b9006 4963723: Implement SHA-224
valeriep
parents: 5506
diff changeset
    56
    private int[] state;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
     * Creates a new SHA object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
    public SHA() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
        super("SHA-1", 20, 64);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
        state = new int[5];
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
        W = new int[80];
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
        implReset();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
     * Clones this object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
     */
12685
8a448b5b9006 4963723: Implement SHA-224
valeriep
parents: 5506
diff changeset
    71
    public Object clone() throws CloneNotSupportedException {
8a448b5b9006 4963723: Implement SHA-224
valeriep
parents: 5506
diff changeset
    72
        SHA copy = (SHA) super.clone();
8a448b5b9006 4963723: Implement SHA-224
valeriep
parents: 5506
diff changeset
    73
        copy.state = copy.state.clone();
8a448b5b9006 4963723: Implement SHA-224
valeriep
parents: 5506
diff changeset
    74
        copy.W = new int[80];
8a448b5b9006 4963723: Implement SHA-224
valeriep
parents: 5506
diff changeset
    75
        return copy;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
     * Resets the buffers and hash value to start a new hash.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
    void implReset() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
        state[0] = 0x67452301;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
        state[1] = 0xefcdab89;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
        state[2] = 0x98badcfe;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
        state[3] = 0x10325476;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
        state[4] = 0xc3d2e1f0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
     * Computes the final hash and copies the 20 bytes to the output array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
    void implDigest(byte[] out, int ofs) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
        long bitsProcessed = bytesProcessed << 3;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
        int index = (int)bytesProcessed & 0x3f;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
        int padLen = (index < 56) ? (56 - index) : (120 - index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
        engineUpdate(padding, 0, padLen);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
        i2bBig4((int)(bitsProcessed >>> 32), buffer, 56);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
        i2bBig4((int)bitsProcessed, buffer, 60);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
        implCompress(buffer, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
        i2bBig(state, 0, out, ofs, 20);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
    // Constants for each round
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 31671
diff changeset
   107
    private static final int round1_kt = 0x5a827999;
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 31671
diff changeset
   108
    private static final int round2_kt = 0x6ed9eba1;
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 31671
diff changeset
   109
    private static final int round3_kt = 0x8f1bbcdc;
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 31671
diff changeset
   110
    private static final int round4_kt = 0xca62c1d6;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
     * Compute a the hash for the current block.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
     * This is in the same vein as Peter Gutmann's algorithm listed in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
     * the back of Applied Cryptography, Compact implementation of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
     * "old" NIST Secure Hash Algorithm.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
    void implCompress(byte[] buf, int ofs) {
31671
362e0c0acece 8076112: Add @HotSpotIntrinsicCandidate annotation to indicate methods for which Java Runtime has intrinsics
zmajo
parents: 25859
diff changeset
   120
        implCompressCheck(buf, ofs);
362e0c0acece 8076112: Add @HotSpotIntrinsicCandidate annotation to indicate methods for which Java Runtime has intrinsics
zmajo
parents: 25859
diff changeset
   121
        implCompress0(buf, ofs);
362e0c0acece 8076112: Add @HotSpotIntrinsicCandidate annotation to indicate methods for which Java Runtime has intrinsics
zmajo
parents: 25859
diff changeset
   122
    }
362e0c0acece 8076112: Add @HotSpotIntrinsicCandidate annotation to indicate methods for which Java Runtime has intrinsics
zmajo
parents: 25859
diff changeset
   123
362e0c0acece 8076112: Add @HotSpotIntrinsicCandidate annotation to indicate methods for which Java Runtime has intrinsics
zmajo
parents: 25859
diff changeset
   124
    private void implCompressCheck(byte[] buf, int ofs) {
362e0c0acece 8076112: Add @HotSpotIntrinsicCandidate annotation to indicate methods for which Java Runtime has intrinsics
zmajo
parents: 25859
diff changeset
   125
        Objects.requireNonNull(buf);
362e0c0acece 8076112: Add @HotSpotIntrinsicCandidate annotation to indicate methods for which Java Runtime has intrinsics
zmajo
parents: 25859
diff changeset
   126
362e0c0acece 8076112: Add @HotSpotIntrinsicCandidate annotation to indicate methods for which Java Runtime has intrinsics
zmajo
parents: 25859
diff changeset
   127
        // The checks performed by the method 'b2iBig64'
362e0c0acece 8076112: Add @HotSpotIntrinsicCandidate annotation to indicate methods for which Java Runtime has intrinsics
zmajo
parents: 25859
diff changeset
   128
        // are sufficient for the case when the method
362e0c0acece 8076112: Add @HotSpotIntrinsicCandidate annotation to indicate methods for which Java Runtime has intrinsics
zmajo
parents: 25859
diff changeset
   129
        // 'implCompressImpl' is replaced with a compiler
362e0c0acece 8076112: Add @HotSpotIntrinsicCandidate annotation to indicate methods for which Java Runtime has intrinsics
zmajo
parents: 25859
diff changeset
   130
        // intrinsic.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
        b2iBig64(buf, ofs, W);
31671
362e0c0acece 8076112: Add @HotSpotIntrinsicCandidate annotation to indicate methods for which Java Runtime has intrinsics
zmajo
parents: 25859
diff changeset
   132
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
31671
362e0c0acece 8076112: Add @HotSpotIntrinsicCandidate annotation to indicate methods for which Java Runtime has intrinsics
zmajo
parents: 25859
diff changeset
   134
    // The method 'implCompressImpl seems not to use its parameters.
362e0c0acece 8076112: Add @HotSpotIntrinsicCandidate annotation to indicate methods for which Java Runtime has intrinsics
zmajo
parents: 25859
diff changeset
   135
    // The method can, however, be replaced with a compiler intrinsic
362e0c0acece 8076112: Add @HotSpotIntrinsicCandidate annotation to indicate methods for which Java Runtime has intrinsics
zmajo
parents: 25859
diff changeset
   136
    // that operates directly on the array 'buf' (starting from
362e0c0acece 8076112: Add @HotSpotIntrinsicCandidate annotation to indicate methods for which Java Runtime has intrinsics
zmajo
parents: 25859
diff changeset
   137
    // offset 'ofs') and not on array 'W', therefore 'buf' and 'ofs'
362e0c0acece 8076112: Add @HotSpotIntrinsicCandidate annotation to indicate methods for which Java Runtime has intrinsics
zmajo
parents: 25859
diff changeset
   138
    // must be passed as parameter to the method.
362e0c0acece 8076112: Add @HotSpotIntrinsicCandidate annotation to indicate methods for which Java Runtime has intrinsics
zmajo
parents: 25859
diff changeset
   139
    @HotSpotIntrinsicCandidate
362e0c0acece 8076112: Add @HotSpotIntrinsicCandidate annotation to indicate methods for which Java Runtime has intrinsics
zmajo
parents: 25859
diff changeset
   140
    private void implCompress0(byte[] buf, int ofs) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
        // The first 16 ints have the byte stream, compute the rest of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
        // the buffer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
        for (int t = 16; t <= 79; t++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
            int temp = W[t-3] ^ W[t-8] ^ W[t-14] ^ W[t-16];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
            W[t] = (temp << 1) | (temp >>> 31);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
        int a = state[0];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
        int b = state[1];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
        int c = state[2];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
        int d = state[3];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
        int e = state[4];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
        // Round 1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
        for (int i = 0; i < 20; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
            int temp = ((a<<5) | (a>>>(32-5))) +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
                ((b&c)|((~b)&d))+ e + W[i] + round1_kt;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
            e = d;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
            d = c;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
            c = ((b<<30) | (b>>>(32-30)));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
            b = a;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
            a = temp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
        // Round 2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
        for (int i = 20; i < 40; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
            int temp = ((a<<5) | (a>>>(32-5))) +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
                (b ^ c ^ d) + e + W[i] + round2_kt;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
            e = d;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
            d = c;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
            c = ((b<<30) | (b>>>(32-30)));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
            b = a;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
            a = temp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
        // Round 3
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
        for (int i = 40; i < 60; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
            int temp = ((a<<5) | (a>>>(32-5))) +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
                ((b&c)|(b&d)|(c&d)) + e + W[i] + round3_kt;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
            e = d;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
            d = c;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
            c = ((b<<30) | (b>>>(32-30)));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
            b = a;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
            a = temp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
        // Round 4
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
        for (int i = 60; i < 80; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
            int temp = ((a<<5) | (a>>>(32-5))) +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
                (b ^ c ^ d) + e + W[i] + round4_kt;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
            e = d;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
            d = c;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
            c = ((b<<30) | (b>>>(32-30)));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
            b = a;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
            a = temp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
        state[0] += a;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
        state[1] += b;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
        state[2] += c;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
        state[3] += d;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
        state[4] += e;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
}