001: /*
002: * Licensed to the Apache Software Foundation (ASF) under one or more
003: * contributor license agreements. See the NOTICE file distributed with
004: * this work for additional information regarding copyright ownership.
005: * The ASF licenses this file to You under the Apache License, Version 2.0
006: * (the "License"); you may not use this file except in compliance with
007: * the License. You may obtain a copy of the License at
008: *
009: * http://www.apache.org/licenses/LICENSE-2.0
010: *
011: * Unless required by applicable law or agreed to in writing, software
012: * distributed under the License is distributed on an "AS IS" BASIS,
013: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014: * See the License for the specific language governing permissions and
015: * limitations under the License.
016: */
017:
018: /**
019: * @author Boris Kuznetsov
020: * @version $Revision$
021: */package org.apache.harmony.xnet.provider.jsse;
022:
023: /**
024: * This class contains well-known primes
025: */
026: public class DHParameters {
027:
028: // Well-known 512 bit prime
029: // http://news.hping.org/sci.crypt.archive/2370.html
030: private static byte[] prime512 = new byte[] { (byte) 0xF5,
031: (byte) 0x2A, (byte) 0xFF, (byte) 0x3C, (byte) 0xE1,
032: (byte) 0xB1, (byte) 0x29, (byte) 0x40, (byte) 0x18,
033: (byte) 0x11, (byte) 0x8D, (byte) 0x7C, (byte) 0x84,
034: (byte) 0xA7, (byte) 0x0A, (byte) 0x72, (byte) 0xD6,
035: (byte) 0x86, (byte) 0xC4, (byte) 0x03, (byte) 0x19,
036: (byte) 0xC8, (byte) 0x07, (byte) 0x29, (byte) 0x7A,
037: (byte) 0xCA, (byte) 0x95, (byte) 0x0C, (byte) 0xD9,
038: (byte) 0x96, (byte) 0x9F, (byte) 0xAB, (byte) 0xD0,
039: (byte) 0x0A, (byte) 0x50, (byte) 0x9B, (byte) 0x02,
040: (byte) 0x46, (byte) 0xD3, (byte) 0x08, (byte) 0x3D,
041: (byte) 0x66, (byte) 0xA4, (byte) 0x5D, (byte) 0x41,
042: (byte) 0x9F, (byte) 0x9C, (byte) 0x7C, (byte) 0xBD,
043: (byte) 0x89, (byte) 0x4B, (byte) 0x22, (byte) 0x19,
044: (byte) 0x26, (byte) 0xBA, (byte) 0xAB, (byte) 0xA2,
045: (byte) 0x5E, (byte) 0xC3, (byte) 0x55, (byte) 0xE9,
046: (byte) 0x2A, (byte) 0x05, (byte) 0x5F };
047:
048: // Well-Known Group 1: A 768 bit prime rfc 2539
049: // (http://www.ietf.org/rfc/rfc2539.txt?number=2539)
050: private static byte[] primeGroup1 = { (byte) 0xFF, (byte) 0xFF,
051: (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF,
052: (byte) 0xFF, (byte) 0xFF, (byte) 0xC9, (byte) 0x0F,
053: (byte) 0xDA, (byte) 0xA2, (byte) 0x21, (byte) 0x68,
054: (byte) 0xC2, (byte) 0x34, (byte) 0xC4, (byte) 0xC6,
055: (byte) 0x62, (byte) 0x8B, (byte) 0x80, (byte) 0xDC,
056: (byte) 0x1C, (byte) 0xD1, (byte) 0x29, (byte) 0x02,
057: (byte) 0x4E, (byte) 0x08, (byte) 0x8A, (byte) 0x67,
058: (byte) 0xCC, (byte) 0x74, (byte) 0x02, (byte) 0x0B,
059: (byte) 0xBE, (byte) 0xA6, (byte) 0x3B, (byte) 0x13,
060: (byte) 0x9B, (byte) 0x22, (byte) 0x51, (byte) 0x4A,
061: (byte) 0x08, (byte) 0x79, (byte) 0x8E, (byte) 0x34,
062: (byte) 0x04, (byte) 0xDD, (byte) 0xEF, (byte) 0x95,
063: (byte) 0x19, (byte) 0xB3, (byte) 0xCD, (byte) 0x3A,
064: (byte) 0x43, (byte) 0x1B, (byte) 0x30, (byte) 0x2B,
065: (byte) 0x0A, (byte) 0x6D, (byte) 0xF2, (byte) 0x5F,
066: (byte) 0x14, (byte) 0x37, (byte) 0x4F, (byte) 0xE1,
067: (byte) 0x35, (byte) 0x6D, (byte) 0x6D, (byte) 0x51,
068: (byte) 0xC2, (byte) 0x45, (byte) 0xE4, (byte) 0x85,
069: (byte) 0xB5, (byte) 0x76, (byte) 0x62, (byte) 0x5E,
070: (byte) 0x7E, (byte) 0xC6, (byte) 0xF4, (byte) 0x4C,
071: (byte) 0x42, (byte) 0xE9, (byte) 0xA6, (byte) 0x3A,
072: (byte) 0x36, (byte) 0x20, (byte) 0xFF, (byte) 0xFF,
073: (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF,
074: (byte) 0xFF, (byte) 0xFF };
075:
076: // Well-Known Group 2: A 1024 bit prime rfc 2539
077: // (http://www.ietf.org/rfc/rfc2539.txt?number=2539)
078: private static byte[] primeGroup2 = { (byte) 0xFF, (byte) 0xFF,
079: (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF,
080: (byte) 0xFF, (byte) 0xFF, (byte) 0xC9, (byte) 0x0F,
081: (byte) 0xDA, (byte) 0xA2, (byte) 0x21, (byte) 0x68,
082: (byte) 0xC2, (byte) 0x34, (byte) 0xC4, (byte) 0xC6,
083: (byte) 0x62, (byte) 0x8B, (byte) 0x80, (byte) 0xDC,
084: (byte) 0x1C, (byte) 0xD1, (byte) 0x29, (byte) 0x02,
085: (byte) 0x4E, (byte) 0x08, (byte) 0x8A, (byte) 0x67,
086: (byte) 0xCC, (byte) 0x74, (byte) 0x02, (byte) 0x0B,
087: (byte) 0xBE, (byte) 0xA6, (byte) 0x3B, (byte) 0x13,
088: (byte) 0x9B, (byte) 0x22, (byte) 0x51, (byte) 0x4A,
089: (byte) 0x08, (byte) 0x79, (byte) 0x8E, (byte) 0x34,
090: (byte) 0x04, (byte) 0xDD, (byte) 0xEF, (byte) 0x95,
091: (byte) 0x19, (byte) 0xB3, (byte) 0xCD, (byte) 0x3A,
092: (byte) 0x43, (byte) 0x1B, (byte) 0x30, (byte) 0x2B,
093: (byte) 0x0A, (byte) 0x6D, (byte) 0xF2, (byte) 0x5F,
094: (byte) 0x14, (byte) 0x37, (byte) 0x4F, (byte) 0xE1,
095: (byte) 0x35, (byte) 0x6D, (byte) 0x6D, (byte) 0x51,
096: (byte) 0xC2, (byte) 0x45, (byte) 0xE4, (byte) 0x85,
097: (byte) 0xB5, (byte) 0x76, (byte) 0x62, (byte) 0x5E,
098: (byte) 0x7E, (byte) 0xC6, (byte) 0xF4, (byte) 0x4C,
099: (byte) 0x42, (byte) 0xE9, (byte) 0xA6, (byte) 0x37,
100: (byte) 0xED, (byte) 0x6B, (byte) 0x0B, (byte) 0xFF,
101: (byte) 0x5C, (byte) 0xB6, (byte) 0xF4, (byte) 0x06,
102: (byte) 0xB7, (byte) 0xED, (byte) 0xEE, (byte) 0x38,
103: (byte) 0x6B, (byte) 0xFB, (byte) 0x5A, (byte) 0x89,
104: (byte) 0x9F, (byte) 0xA5, (byte) 0xAE, (byte) 0x9F,
105: (byte) 0x24, (byte) 0x11, (byte) 0x7C, (byte) 0x4B,
106: (byte) 0x1F, (byte) 0xE6, (byte) 0x49, (byte) 0x28,
107: (byte) 0x66, (byte) 0x51, (byte) 0xEC, (byte) 0xE6,
108: (byte) 0x53, (byte) 0x81, (byte) 0xFF, (byte) 0xFF,
109: (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF,
110: (byte) 0xFF, (byte) 0xFF };
111:
112: private static byte[] prime;
113:
114: static {
115: //TODO set prime depand on some system or security property
116: prime = prime512;
117: }
118:
119: /**
120: * Returns prime bytes
121: * @return
122: */
123: public static byte[] getPrime() {
124: return prime;
125: }
126: }
|