Main Page | Data Structures | File List | Data Fields | Globals | Related Pages

dh_groups.h

Go to the documentation of this file.
00001 /*
00002  *  dh_groups.h - file containing byte array representation of DH groups
00003  *  
00004  *  EAP-IKEv2
00005  *
00006  *  This library implements ideas of draft-tschofenig-eap-ikev2-10.txt
00007  *  Internet-Draft. Version of the document that this library corresponds
00008  *  to you can find at
00009  *  http://tools.ietf.org/wg/eap/draft-tschofenig-eap-ikev2-10.txt.
00010  *
00011  *  This file is part of libeap-ikev2.
00012  *
00013  *  libeap-ikev2 is free software; you can redistribute it and/or modify
00014  *  it under the terms of the GNU General Public License as published by
00015  *  the Free Software Foundation; either version 2 of the License, or
00016  *  (at your option) any later version.
00017  *
00018  *  libeap-ikev2 is distributed in the hope that it will be useful,
00019  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
00020  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00021  *  GNU General Public License for more details.
00022  *
00023  *  You should have received a copy of the GNU General Public License
00024  *  along with libeap-ikev2; if not, write to the Free Software
00025  *
00026  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
00027  *
00028  *  Copyright (C) 2005-2006 Krzysztof Rzecki <krzysztof.rzecki@ccns.pl>      
00029  *  Copyright (C) 2005-2006 Rafal Mijal <rafal.mijal@ccns.pl>                
00030  *  Copyright (C) 2005-2006 Piotr Marnik <piotr.marnik@ccns.pl>              
00031  *  Copyright (C) 2005-2006 Pawel Matejski <pawel.matejski@ccns.pl>          
00032  *  Copyright (C) 2003      Udo Schilcher <udo.schilcher@edu.uni-klu.ac.at>
00033  *  Copyright (C) 2003      Thomas Hambrusch <thambrus@edu.uni-klu.ac.at>          
00034  *
00035  */
00036 
00037 #ifndef DH_GROUPS_H
00038 #define DH_GROUPS_H
00039 
00040 #ifdef __cplusplus
00041 extern "C" {
00042 #endif
00043 
00045 #define DHGROUP_GENERATOR 2
00046 
00047 #include <stdint.h>
00048 
00049 // begin DH groups
00050 
00051 static uint8_t MODP768_MODULUS[96]={
00052         0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc9,0x0f,0xda,0xa2,0x21,0x68,0xc2,
00053         0x34,0xc4,0xc6,0x62,0x8b,0x80,0xdc,0x1c,0xd1,0x29,0x02,0x4e,0x08,0x8a,0x67,
00054         0xcc,0x74,0x02,0x0b,0xbe,0xa6,0x3b,0x13,0x9b,0x22,0x51,0x4a,0x08,0x79,0x8e,
00055         0x34,0x04,0xdd,0xef,0x95,0x19,0xb3,0xcd,0x3a,0x43,0x1b,0x30,0x2b,0x0a,0x6d,
00056         0xf2,0x5f,0x14,0x37,0x4f,0xe1,0x35,0x6d,0x6d,0x51,0xc2,0x45,0xe4,0x85,0xb5,
00057         0x76,0x62,0x5e,0x7e,0xc6,0xf4,0x4c,0x42,0xe9,0xa6,0x3a,0x36,0x20,0xff,0xff,
00058         0xff,0xff,0xff,0xff,0xff,0xff
00059         };
00060 
00061 static uint8_t MODP1024_MODULUS[128]={
00062         0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc9,0x0f,0xda,0xa2,0x21,0x68,0xc2,
00063         0x34,0xc4,0xc6,0x62,0x8b,0x80,0xdc,0x1c,0xd1,0x29,0x02,0x4e,0x08,0x8a,0x67,
00064         0xcc,0x74,0x02,0x0b,0xbe,0xa6,0x3b,0x13,0x9b,0x22,0x51,0x4a,0x08,0x79,0x8e,
00065         0x34,0x04,0xdd,0xef,0x95,0x19,0xb3,0xcd,0x3a,0x43,0x1b,0x30,0x2b,0x0a,0x6d,
00066         0xf2,0x5f,0x14,0x37,0x4f,0xe1,0x35,0x6d,0x6d,0x51,0xc2,0x45,0xe4,0x85,0xb5,
00067         0x76,0x62,0x5e,0x7e,0xc6,0xf4,0x4c,0x42,0xe9,0xa6,0x37,0xed,0x6b,0x0b,0xff,
00068         0x5c,0xb6,0xf4,0x06,0xb7,0xed,0xee,0x38,0x6b,0xfb,0x5a,0x89,0x9f,0xa5,0xae,
00069         0x9f,0x24,0x11,0x7c,0x4b,0x1f,0xe6,0x49,0x28,0x66,0x51,0xec,0xe6,0x53,0x81,
00070         0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff
00071         };
00072 
00073 static uint8_t MODP1536_MODULUS[192]={
00074         0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc9,0x0f,0xda,0xa2,0x21,0x68,0xc2,
00075         0x34,0xc4,0xc6,0x62,0x8b,0x80,0xdc,0x1c,0xd1,0x29,0x02,0x4e,0x08,0x8a,0x67,
00076         0xcc,0x74,0x02,0x0b,0xbe,0xa6,0x3b,0x13,0x9b,0x22,0x51,0x4a,0x08,0x79,0x8e,
00077         0x34,0x04,0xdd,0xef,0x95,0x19,0xb3,0xcd,0x3a,0x43,0x1b,0x30,0x2b,0x0a,0x6d,
00078         0xf2,0x5f,0x14,0x37,0x4f,0xe1,0x35,0x6d,0x6d,0x51,0xc2,0x45,0xe4,0x85,0xb5,
00079         0x76,0x62,0x5e,0x7e,0xc6,0xf4,0x4c,0x42,0xe9,0xa6,0x37,0xed,0x6b,0x0b,0xff,
00080         0x5c,0xb6,0xf4,0x06,0xb7,0xed,0xee,0x38,0x6b,0xfb,0x5a,0x89,0x9f,0xa5,0xae,
00081         0x9f,0x24,0x11,0x7c,0x4b,0x1f,0xe6,0x49,0x28,0x66,0x51,0xec,0xe4,0x5b,0x3d,
00082         0xc2,0x00,0x7c,0xb8,0xa1,0x63,0xbf,0x05,0x98,0xda,0x48,0x36,0x1c,0x55,0xd3,
00083         0x9a,0x69,0x16,0x3f,0xa8,0xfd,0x24,0xcf,0x5f,0x83,0x65,0x5d,0x23,0xdc,0xa3,
00084         0xad,0x96,0x1c,0x62,0xf3,0x56,0x20,0x85,0x52,0xbb,0x9e,0xd5,0x29,0x07,0x70,
00085         0x96,0x96,0x6d,0x67,0x0c,0x35,0x4e,0x4a,0xbc,0x98,0x04,0xf1,0x74,0x6c,0x08,
00086         0xca,0x23,0x73,0x27,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff
00087         };
00088 
00089 static uint8_t MODP2048_MODULUS[256]={
00090         0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc9,0x0f,0xda,0xa2,0x21,0x68,0xc2,
00091         0x34,0xc4,0xc6,0x62,0x8b,0x80,0xdc,0x1c,0xd1,0x29,0x02,0x4e,0x08,0x8a,0x67,
00092         0xcc,0x74,0x02,0x0b,0xbe,0xa6,0x3b,0x13,0x9b,0x22,0x51,0x4a,0x08,0x79,0x8e,
00093         0x34,0x04,0xdd,0xef,0x95,0x19,0xb3,0xcd,0x3a,0x43,0x1b,0x30,0x2b,0x0a,0x6d,
00094         0xf2,0x5f,0x14,0x37,0x4f,0xe1,0x35,0x6d,0x6d,0x51,0xc2,0x45,0xe4,0x85,0xb5,
00095         0x76,0x62,0x5e,0x7e,0xc6,0xf4,0x4c,0x42,0xe9,0xa6,0x37,0xed,0x6b,0x0b,0xff,
00096         0x5c,0xb6,0xf4,0x06,0xb7,0xed,0xee,0x38,0x6b,0xfb,0x5a,0x89,0x9f,0xa5,0xae,
00097         0x9f,0x24,0x11,0x7c,0x4b,0x1f,0xe6,0x49,0x28,0x66,0x51,0xec,0xe4,0x5b,0x3d,
00098         0xc2,0x00,0x7c,0xb8,0xa1,0x63,0xbf,0x05,0x98,0xda,0x48,0x36,0x1c,0x55,0xd3,
00099         0x9a,0x69,0x16,0x3f,0xa8,0xfd,0x24,0xcf,0x5f,0x83,0x65,0x5d,0x23,0xdc,0xa3,
00100         0xad,0x96,0x1c,0x62,0xf3,0x56,0x20,0x85,0x52,0xbb,0x9e,0xd5,0x29,0x07,0x70,
00101         0x96,0x96,0x6d,0x67,0x0c,0x35,0x4e,0x4a,0xbc,0x98,0x04,0xf1,0x74,0x6c,0x08,
00102         0xca,0x18,0x21,0x7c,0x32,0x90,0x5e,0x46,0x2e,0x36,0xce,0x3b,0xe3,0x9e,0x77,
00103         0x2c,0x18,0x0e,0x86,0x03,0x9b,0x27,0x83,0xa2,0xec,0x07,0xa2,0x8f,0xb5,0xc5,
00104         0x5d,0xf0,0x6f,0x4c,0x52,0xc9,0xde,0x2b,0xcb,0xf6,0x95,0x58,0x17,0x18,0x39,
00105         0x95,0x49,0x7c,0xea,0x95,0x6a,0xe5,0x15,0xd2,0x26,0x18,0x98,0xfa,0x05,0x10,
00106         0x15,0x72,0x8e,0x5a,0x8a,0xac,0xaa,0x68,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
00107         0xff
00108         };
00109 
00110 static uint8_t MODP3072_MODULUS[384]={
00111         0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc9,0x0f,0xda,0xa2,0x21,0x68,0xc2,
00112         0x34,0xc4,0xc6,0x62,0x8b,0x80,0xdc,0x1c,0xd1,0x29,0x02,0x4e,0x08,0x8a,0x67,
00113         0xcc,0x74,0x02,0x0b,0xbe,0xa6,0x3b,0x13,0x9b,0x22,0x51,0x4a,0x08,0x79,0x8e,
00114         0x34,0x04,0xdd,0xef,0x95,0x19,0xb3,0xcd,0x3a,0x43,0x1b,0x30,0x2b,0x0a,0x6d,
00115         0xf2,0x5f,0x14,0x37,0x4f,0xe1,0x35,0x6d,0x6d,0x51,0xc2,0x45,0xe4,0x85,0xb5,
00116         0x76,0x62,0x5e,0x7e,0xc6,0xf4,0x4c,0x42,0xe9,0xa6,0x37,0xed,0x6b,0x0b,0xff,
00117         0x5c,0xb6,0xf4,0x06,0xb7,0xed,0xee,0x38,0x6b,0xfb,0x5a,0x89,0x9f,0xa5,0xae,
00118         0x9f,0x24,0x11,0x7c,0x4b,0x1f,0xe6,0x49,0x28,0x66,0x51,0xec,0xe4,0x5b,0x3d,
00119         0xc2,0x00,0x7c,0xb8,0xa1,0x63,0xbf,0x05,0x98,0xda,0x48,0x36,0x1c,0x55,0xd3,
00120         0x9a,0x69,0x16,0x3f,0xa8,0xfd,0x24,0xcf,0x5f,0x83,0x65,0x5d,0x23,0xdc,0xa3,
00121         0xad,0x96,0x1c,0x62,0xf3,0x56,0x20,0x85,0x52,0xbb,0x9e,0xd5,0x29,0x07,0x70,
00122         0x96,0x96,0x6d,0x67,0x0c,0x35,0x4e,0x4a,0xbc,0x98,0x04,0xf1,0x74,0x6c,0x08,
00123         0xca,0x18,0x21,0x7c,0x32,0x90,0x5e,0x46,0x2e,0x36,0xce,0x3b,0xe3,0x9e,0x77,
00124         0x2c,0x18,0x0e,0x86,0x03,0x9b,0x27,0x83,0xa2,0xec,0x07,0xa2,0x8f,0xb5,0xc5,
00125         0x5d,0xf0,0x6f,0x4c,0x52,0xc9,0xde,0x2b,0xcb,0xf6,0x95,0x58,0x17,0x18,0x39,
00126         0x95,0x49,0x7c,0xea,0x95,0x6a,0xe5,0x15,0xd2,0x26,0x18,0x98,0xfa,0x05,0x10,
00127         0x15,0x72,0x8e,0x5a,0x8a,0xaa,0xc4,0x2d,0xad,0x33,0x17,0x0d,0x04,0x50,0x7a,
00128         0x33,0xa8,0x55,0x21,0xab,0xdf,0x1c,0xba,0x64,0xec,0xfb,0x85,0x04,0x58,0xdb,
00129         0xef,0x0a,0x8a,0xea,0x71,0x57,0x5d,0x06,0x0c,0x7d,0xb3,0x97,0x0f,0x85,0xa6,
00130         0xe1,0xe4,0xc7,0xab,0xf5,0xae,0x8c,0xdb,0x09,0x33,0xd7,0x1e,0x8c,0x94,0xe0,
00131         0x4a,0x25,0x61,0x9d,0xce,0xe3,0xd2,0x26,0x1a,0xd2,0xee,0x6b,0xf1,0x2f,0xfa,
00132         0x06,0xd9,0x8a,0x08,0x64,0xd8,0x76,0x02,0x73,0x3e,0xc8,0x6a,0x64,0x52,0x1f,
00133         0x2b,0x18,0x17,0x7b,0x20,0x0c,0xbb,0xe1,0x17,0x57,0x7a,0x61,0x5d,0x6c,0x77,
00134         0x09,0x88,0xc0,0xba,0xd9,0x46,0xe2,0x08,0xe2,0x4f,0xa0,0x74,0xe5,0xab,0x31,
00135         0x43,0xdb,0x5b,0xfc,0xe0,0xfd,0x10,0x8e,0x4b,0x82,0xd1,0x20,0xa9,0x3a,0xd2,
00136         0xca,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff
00137         };
00138 
00139 static uint8_t MODP4096_MODULUS[512]={
00140         0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc9,0x0f,0xda,0xa2,0x21,0x68,0xc2,
00141         0x34,0xc4,0xc6,0x62,0x8b,0x80,0xdc,0x1c,0xd1,0x29,0x02,0x4e,0x08,0x8a,0x67,
00142         0xcc,0x74,0x02,0x0b,0xbe,0xa6,0x3b,0x13,0x9b,0x22,0x51,0x4a,0x08,0x79,0x8e,
00143         0x34,0x04,0xdd,0xef,0x95,0x19,0xb3,0xcd,0x3a,0x43,0x1b,0x30,0x2b,0x0a,0x6d,
00144         0xf2,0x5f,0x14,0x37,0x4f,0xe1,0x35,0x6d,0x6d,0x51,0xc2,0x45,0xe4,0x85,0xb5,
00145         0x76,0x62,0x5e,0x7e,0xc6,0xf4,0x4c,0x42,0xe9,0xa6,0x37,0xed,0x6b,0x0b,0xff,
00146         0x5c,0xb6,0xf4,0x06,0xb7,0xed,0xee,0x38,0x6b,0xfb,0x5a,0x89,0x9f,0xa5,0xae,
00147         0x9f,0x24,0x11,0x7c,0x4b,0x1f,0xe6,0x49,0x28,0x66,0x51,0xec,0xe4,0x5b,0x3d,
00148         0xc2,0x00,0x7c,0xb8,0xa1,0x63,0xbf,0x05,0x98,0xda,0x48,0x36,0x1c,0x55,0xd3,
00149         0x9a,0x69,0x16,0x3f,0xa8,0xfd,0x24,0xcf,0x5f,0x83,0x65,0x5d,0x23,0xdc,0xa3,
00150         0xad,0x96,0x1c,0x62,0xf3,0x56,0x20,0x85,0x52,0xbb,0x9e,0xd5,0x29,0x07,0x70,
00151         0x96,0x96,0x6d,0x67,0x0c,0x35,0x4e,0x4a,0xbc,0x98,0x04,0xf1,0x74,0x6c,0x08,
00152         0xca,0x18,0x21,0x7c,0x32,0x90,0x5e,0x46,0x2e,0x36,0xce,0x3b,0xe3,0x9e,0x77,
00153         0x2c,0x18,0x0e,0x86,0x03,0x9b,0x27,0x83,0xa2,0xec,0x07,0xa2,0x8f,0xb5,0xc5,
00154         0x5d,0xf0,0x6f,0x4c,0x52,0xc9,0xde,0x2b,0xcb,0xf6,0x95,0x58,0x17,0x18,0x39,
00155         0x95,0x49,0x7c,0xea,0x95,0x6a,0xe5,0x15,0xd2,0x26,0x18,0x98,0xfa,0x05,0x10,
00156         0x15,0x72,0x8e,0x5a,0x8a,0xaa,0xc4,0x2d,0xad,0x33,0x17,0x0d,0x04,0x50,0x7a,
00157         0x33,0xa8,0x55,0x21,0xab,0xdf,0x1c,0xba,0x64,0xec,0xfb,0x85,0x04,0x58,0xdb,
00158         0xef,0x0a,0x8a,0xea,0x71,0x57,0x5d,0x06,0x0c,0x7d,0xb3,0x97,0x0f,0x85,0xa6,
00159         0xe1,0xe4,0xc7,0xab,0xf5,0xae,0x8c,0xdb,0x09,0x33,0xd7,0x1e,0x8c,0x94,0xe0,
00160         0x4a,0x25,0x61,0x9d,0xce,0xe3,0xd2,0x26,0x1a,0xd2,0xee,0x6b,0xf1,0x2f,0xfa,
00161         0x06,0xd9,0x8a,0x08,0x64,0xd8,0x76,0x02,0x73,0x3e,0xc8,0x6a,0x64,0x52,0x1f,
00162         0x2b,0x18,0x17,0x7b,0x20,0x0c,0xbb,0xe1,0x17,0x57,0x7a,0x61,0x5d,0x6c,0x77,
00163         0x09,0x88,0xc0,0xba,0xd9,0x46,0xe2,0x08,0xe2,0x4f,0xa0,0x74,0xe5,0xab,0x31,
00164         0x43,0xdb,0x5b,0xfc,0xe0,0xfd,0x10,0x8e,0x4b,0x82,0xd1,0x20,0xa9,0x21,0x08,
00165         0x01,0x1a,0x72,0x3c,0x12,0xa7,0x87,0xe6,0xd7,0x88,0x71,0x9a,0x10,0xbd,0xba,
00166         0x5b,0x26,0x99,0xc3,0x27,0x18,0x6a,0xf4,0xe2,0x3c,0x1a,0x94,0x68,0x34,0xb6,
00167         0x15,0x0b,0xda,0x25,0x83,0xe9,0xca,0x2a,0xd4,0x4c,0xe8,0xdb,0xbb,0xc2,0xdb,
00168         0x04,0xde,0x8e,0xf9,0x2e,0x8e,0xfc,0x14,0x1f,0xbe,0xca,0xa6,0x28,0x7c,0x59,
00169         0x47,0x4e,0x6b,0xc0,0x5d,0x99,0xb2,0x96,0x4f,0xa0,0x90,0xc3,0xa2,0x23,0x3b,
00170         0xa1,0x86,0x51,0x5b,0xe7,0xed,0x1f,0x61,0x29,0x70,0xce,0xe2,0xd7,0xaf,0xb8,
00171         0x1b,0xdd,0x76,0x21,0x70,0x48,0x1c,0xd0,0x06,0x91,0x27,0xd5,0xb0,0x5a,0xa9,
00172         0x93,0xb4,0xea,0x98,0x8d,0x8f,0xdd,0xc1,0x86,0xff,0xb7,0xdc,0x90,0xa6,0xc0,
00173         0x8f,0x4d,0xf4,0x35,0xc9,0x34,0x06,0x31,0x99,0xff,0xff,0xff,0xff,0xff,0xff,
00174         0xff,0xff
00175         };
00176 
00177 static uint8_t MODP6144_MODULUS[768]={
00178         0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc9,0x0f,0xda,0xa2,0x21,0x68,0xc2,
00179         0x34,0xc4,0xc6,0x62,0x8b,0x80,0xdc,0x1c,0xd1,0x29,0x02,0x4e,0x08,0x8a,0x67,
00180         0xcc,0x74,0x02,0x0b,0xbe,0xa6,0x3b,0x13,0x9b,0x22,0x51,0x4a,0x08,0x79,0x8e,
00181         0x34,0x04,0xdd,0xef,0x95,0x19,0xb3,0xcd,0x3a,0x43,0x1b,0x30,0x2b,0x0a,0x6d,
00182         0xf2,0x5f,0x14,0x37,0x4f,0xe1,0x35,0x6d,0x6d,0x51,0xc2,0x45,0xe4,0x85,0xb5,
00183         0x76,0x62,0x5e,0x7e,0xc6,0xf4,0x4c,0x42,0xe9,0xa6,0x37,0xed,0x6b,0x0b,0xff,
00184         0x5c,0xb6,0xf4,0x06,0xb7,0xed,0xee,0x38,0x6b,0xfb,0x5a,0x89,0x9f,0xa5,0xae,
00185         0x9f,0x24,0x11,0x7c,0x4b,0x1f,0xe6,0x49,0x28,0x66,0x51,0xec,0xe4,0x5b,0x3d,
00186         0xc2,0x00,0x7c,0xb8,0xa1,0x63,0xbf,0x05,0x98,0xda,0x48,0x36,0x1c,0x55,0xd3,
00187         0x9a,0x69,0x16,0x3f,0xa8,0xfd,0x24,0xcf,0x5f,0x83,0x65,0x5d,0x23,0xdc,0xa3,
00188         0xad,0x96,0x1c,0x62,0xf3,0x56,0x20,0x85,0x52,0xbb,0x9e,0xd5,0x29,0x07,0x70,
00189         0x96,0x96,0x6d,0x67,0x0c,0x35,0x4e,0x4a,0xbc,0x98,0x04,0xf1,0x74,0x6c,0x08,
00190         0xca,0x18,0x21,0x7c,0x32,0x90,0x5e,0x46,0x2e,0x36,0xce,0x3b,0xe3,0x9e,0x77,
00191         0x2c,0x18,0x0e,0x86,0x03,0x9b,0x27,0x83,0xa2,0xec,0x07,0xa2,0x8f,0xb5,0xc5,
00192         0x5d,0xf0,0x6f,0x4c,0x52,0xc9,0xde,0x2b,0xcb,0xf6,0x95,0x58,0x17,0x18,0x39,
00193         0x95,0x49,0x7c,0xea,0x95,0x6a,0xe5,0x15,0xd2,0x26,0x18,0x98,0xfa,0x05,0x10,
00194         0x15,0x72,0x8e,0x5a,0x8a,0xaa,0xc4,0x2d,0xad,0x33,0x17,0x0d,0x04,0x50,0x7a,
00195         0x33,0xa8,0x55,0x21,0xab,0xdf,0x1c,0xba,0x64,0xec,0xfb,0x85,0x04,0x58,0xdb,
00196         0xef,0x0a,0x8a,0xea,0x71,0x57,0x5d,0x06,0x0c,0x7d,0xb3,0x97,0x0f,0x85,0xa6,
00197         0xe1,0xe4,0xc7,0xab,0xf5,0xae,0x8c,0xdb,0x09,0x33,0xd7,0x1e,0x8c,0x94,0xe0,
00198         0x4a,0x25,0x61,0x9d,0xce,0xe3,0xd2,0x26,0x1a,0xd2,0xee,0x6b,0xf1,0x2f,0xfa,
00199         0x06,0xd9,0x8a,0x08,0x64,0xd8,0x76,0x02,0x73,0x3e,0xc8,0x6a,0x64,0x52,0x1f,
00200         0x2b,0x18,0x17,0x7b,0x20,0x0c,0xbb,0xe1,0x17,0x57,0x7a,0x61,0x5d,0x6c,0x77,
00201         0x09,0x88,0xc0,0xba,0xd9,0x46,0xe2,0x08,0xe2,0x4f,0xa0,0x74,0xe5,0xab,0x31,
00202         0x43,0xdb,0x5b,0xfc,0xe0,0xfd,0x10,0x8e,0x4b,0x82,0xd1,0x20,0xa9,0x21,0x08,
00203         0x01,0x1a,0x72,0x3c,0x12,0xa7,0x87,0xe6,0xd7,0x88,0x71,0x9a,0x10,0xbd,0xba,
00204         0x5b,0x26,0x99,0xc3,0x27,0x18,0x6a,0xf4,0xe2,0x3c,0x1a,0x94,0x68,0x34,0xb6,
00205         0x15,0x0b,0xda,0x25,0x83,0xe9,0xca,0x2a,0xd4,0x4c,0xe8,0xdb,0xbb,0xc2,0xdb,
00206         0x04,0xde,0x8e,0xf9,0x2e,0x8e,0xfc,0x14,0x1f,0xbe,0xca,0xa6,0x28,0x7c,0x59,
00207         0x47,0x4e,0x6b,0xc0,0x5d,0x99,0xb2,0x96,0x4f,0xa0,0x90,0xc3,0xa2,0x23,0x3b,
00208         0xa1,0x86,0x51,0x5b,0xe7,0xed,0x1f,0x61,0x29,0x70,0xce,0xe2,0xd7,0xaf,0xb8,
00209         0x1b,0xdd,0x76,0x21,0x70,0x48,0x1c,0xd0,0x06,0x91,0x27,0xd5,0xb0,0x5a,0xa9,
00210         0x93,0xb4,0xea,0x98,0x8d,0x8f,0xdd,0xc1,0x86,0xff,0xb7,0xdc,0x90,0xa6,0xc0,
00211         0x8f,0x4d,0xf4,0x35,0xc9,0x34,0x02,0x84,0x92,0x36,0xc3,0xfa,0xb4,0xd2,0x7c,
00212         0x70,0x26,0xc1,0xd4,0xdc,0xb2,0x60,0x26,0x46,0xde,0xc9,0x75,0x1e,0x76,0x3d,
00213         0xba,0x37,0xbd,0xf8,0xff,0x94,0x06,0xad,0x9e,0x53,0x0e,0xe5,0xdb,0x38,0x2f,
00214         0x42,0x30,0x01,0xae,0xb0,0x6a,0x53,0xed,0x90,0x27,0xd8,0x31,0x17,0x97,0x27,
00215         0xb0,0x86,0x5a,0x89,0x18,0xda,0x3e,0xdb,0xeb,0xcf,0x9b,0x14,0xed,0x44,0xce,
00216         0x6c,0xba,0xce,0xd4,0xbb,0x1b,0xdb,0x7f,0x14,0x47,0xe6,0xcc,0x25,0x4b,0x33,
00217         0x20,0x51,0x51,0x2b,0xd7,0xaf,0x42,0x6f,0xb8,0xf4,0x01,0x37,0x8c,0xd2,0xbf,
00218         0x59,0x83,0xca,0x01,0xc6,0x4b,0x92,0xec,0xf0,0x32,0xea,0x15,0xd1,0x72,0x1d,
00219         0x03,0xf4,0x82,0xd7,0xce,0x6e,0x74,0xfe,0xf6,0xd5,0x5e,0x70,0x2f,0x46,0x98,
00220         0x0c,0x82,0xb5,0xa8,0x40,0x31,0x90,0x0b,0x1c,0x9e,0x59,0xe7,0xc9,0x7f,0xbe,
00221         0xc7,0xe8,0xf3,0x23,0xa9,0x7a,0x7e,0x36,0xcc,0x88,0xbe,0x0f,0x1d,0x45,0xb7,
00222         0xff,0x58,0x5a,0xc5,0x4b,0xd4,0x07,0xb2,0x2b,0x41,0x54,0xaa,0xcc,0x8f,0x6d,
00223         0x7e,0xbf,0x48,0xe1,0xd8,0x14,0xcc,0x5e,0xd2,0x0f,0x80,0x37,0xe0,0xa7,0x97,
00224         0x15,0xee,0xf2,0x9b,0xe3,0x28,0x06,0xa1,0xd5,0x8b,0xb7,0xc5,0xda,0x76,0xf5,
00225         0x50,0xaa,0x3d,0x8a,0x1f,0xbf,0xf0,0xeb,0x19,0xcc,0xb1,0xa3,0x13,0xd5,0x5c,
00226         0xda,0x56,0xc9,0xec,0x2e,0xf2,0x96,0x32,0x38,0x7f,0xe8,0xd7,0x6e,0x3c,0x04,
00227         0x68,0x04,0x3e,0x8f,0x66,0x3f,0x48,0x60,0xee,0x12,0xbf,0x2d,0x5b,0x0b,0x74,
00228         0x74,0xd6,0xe6,0x94,0xf9,0x1e,0x6d,0xcc,0x40,0x24,0xff,0xff,0xff,0xff,0xff,
00229         0xff,0xff,0xff
00230         };
00231 
00232 static uint8_t MODP8192_MODULUS[1024]={
00233         0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc9,0x0f,0xda,0xa2,0x21,0x68,0xc2,
00234         0x34,0xc4,0xc6,0x62,0x8b,0x80,0xdc,0x1c,0xd1,0x29,0x02,0x4e,0x08,0x8a,0x67,
00235         0xcc,0x74,0x02,0x0b,0xbe,0xa6,0x3b,0x13,0x9b,0x22,0x51,0x4a,0x08,0x79,0x8e,
00236         0x34,0x04,0xdd,0xef,0x95,0x19,0xb3,0xcd,0x3a,0x43,0x1b,0x30,0x2b,0x0a,0x6d,
00237         0xf2,0x5f,0x14,0x37,0x4f,0xe1,0x35,0x6d,0x6d,0x51,0xc2,0x45,0xe4,0x85,0xb5,
00238         0x76,0x62,0x5e,0x7e,0xc6,0xf4,0x4c,0x42,0xe9,0xa6,0x37,0xed,0x6b,0x0b,0xff,
00239         0x5c,0xb6,0xf4,0x06,0xb7,0xed,0xee,0x38,0x6b,0xfb,0x5a,0x89,0x9f,0xa5,0xae,
00240         0x9f,0x24,0x11,0x7c,0x4b,0x1f,0xe6,0x49,0x28,0x66,0x51,0xec,0xe4,0x5b,0x3d,
00241         0xc2,0x00,0x7c,0xb8,0xa1,0x63,0xbf,0x05,0x98,0xda,0x48,0x36,0x1c,0x55,0xd3,
00242         0x9a,0x69,0x16,0x3f,0xa8,0xfd,0x24,0xcf,0x5f,0x83,0x65,0x5d,0x23,0xdc,0xa3,
00243         0xad,0x96,0x1c,0x62,0xf3,0x56,0x20,0x85,0x52,0xbb,0x9e,0xd5,0x29,0x07,0x70,
00244         0x96,0x96,0x6d,0x67,0x0c,0x35,0x4e,0x4a,0xbc,0x98,0x04,0xf1,0x74,0x6c,0x08,
00245         0xca,0x18,0x21,0x7c,0x32,0x90,0x5e,0x46,0x2e,0x36,0xce,0x3b,0xe3,0x9e,0x77,
00246         0x2c,0x18,0x0e,0x86,0x03,0x9b,0x27,0x83,0xa2,0xec,0x07,0xa2,0x8f,0xb5,0xc5,
00247         0x5d,0xf0,0x6f,0x4c,0x52,0xc9,0xde,0x2b,0xcb,0xf6,0x95,0x58,0x17,0x18,0x39,
00248         0x95,0x49,0x7c,0xea,0x95,0x6a,0xe5,0x15,0xd2,0x26,0x18,0x98,0xfa,0x05,0x10,
00249         0x15,0x72,0x8e,0x5a,0x8a,0xaa,0xc4,0x2d,0xad,0x33,0x17,0x0d,0x04,0x50,0x7a,
00250         0x33,0xa8,0x55,0x21,0xab,0xdf,0x1c,0xba,0x64,0xec,0xfb,0x85,0x04,0x58,0xdb,
00251         0xef,0x0a,0x8a,0xea,0x71,0x57,0x5d,0x06,0x0c,0x7d,0xb3,0x97,0x0f,0x85,0xa6,
00252         0xe1,0xe4,0xc7,0xab,0xf5,0xae,0x8c,0xdb,0x09,0x33,0xd7,0x1e,0x8c,0x94,0xe0,
00253         0x4a,0x25,0x61,0x9d,0xce,0xe3,0xd2,0x26,0x1a,0xd2,0xee,0x6b,0xf1,0x2f,0xfa,
00254         0x06,0xd9,0x8a,0x08,0x64,0xd8,0x76,0x02,0x73,0x3e,0xc8,0x6a,0x64,0x52,0x1f,
00255         0x2b,0x18,0x17,0x7b,0x20,0x0c,0xbb,0xe1,0x17,0x57,0x7a,0x61,0x5d,0x6c,0x77,
00256         0x09,0x88,0xc0,0xba,0xd9,0x46,0xe2,0x08,0xe2,0x4f,0xa0,0x74,0xe5,0xab,0x31,
00257         0x43,0xdb,0x5b,0xfc,0xe0,0xfd,0x10,0x8e,0x4b,0x82,0xd1,0x20,0xa9,0x21,0x08,
00258         0x01,0x1a,0x72,0x3c,0x12,0xa7,0x87,0xe6,0xd7,0x88,0x71,0x9a,0x10,0xbd,0xba,
00259         0x5b,0x26,0x99,0xc3,0x27,0x18,0x6a,0xf4,0xe2,0x3c,0x1a,0x94,0x68,0x34,0xb6,
00260         0x15,0x0b,0xda,0x25,0x83,0xe9,0xca,0x2a,0xd4,0x4c,0xe8,0xdb,0xbb,0xc2,0xdb,
00261         0x04,0xde,0x8e,0xf9,0x2e,0x8e,0xfc,0x14,0x1f,0xbe,0xca,0xa6,0x28,0x7c,0x59,
00262         0x47,0x4e,0x6b,0xc0,0x5d,0x99,0xb2,0x96,0x4f,0xa0,0x90,0xc3,0xa2,0x23,0x3b,
00263         0xa1,0x86,0x51,0x5b,0xe7,0xed,0x1f,0x61,0x29,0x70,0xce,0xe2,0xd7,0xaf,0xb8,
00264         0x1b,0xdd,0x76,0x21,0x70,0x48,0x1c,0xd0,0x06,0x91,0x27,0xd5,0xb0,0x5a,0xa9,
00265         0x93,0xb4,0xea,0x98,0x8d,0x8f,0xdd,0xc1,0x86,0xff,0xb7,0xdc,0x90,0xa6,0xc0,
00266         0x8f,0x4d,0xf4,0x35,0xc9,0x34,0x02,0x84,0x92,0x36,0xc3,0xfa,0xb4,0xd2,0x7c,
00267         0x70,0x26,0xc1,0xd4,0xdc,0xb2,0x60,0x26,0x46,0xde,0xc9,0x75,0x1e,0x76,0x3d,
00268         0xba,0x37,0xbd,0xf8,0xff,0x94,0x06,0xad,0x9e,0x53,0x0e,0xe5,0xdb,0x38,0x2f,
00269         0x42,0x30,0x01,0xae,0xb0,0x6a,0x53,0xed,0x90,0x27,0xd8,0x31,0x17,0x97,0x27,
00270         0xb0,0x86,0x5a,0x89,0x18,0xda,0x3e,0xdb,0xeb,0xcf,0x9b,0x14,0xed,0x44,0xce,
00271         0x6c,0xba,0xce,0xd4,0xbb,0x1b,0xdb,0x7f,0x14,0x47,0xe6,0xcc,0x25,0x4b,0x33,
00272         0x20,0x51,0x51,0x2b,0xd7,0xaf,0x42,0x6f,0xb8,0xf4,0x01,0x37,0x8c,0xd2,0xbf,
00273         0x59,0x83,0xca,0x01,0xc6,0x4b,0x92,0xec,0xf0,0x32,0xea,0x15,0xd1,0x72,0x1d,
00274         0x03,0xf4,0x82,0xd7,0xce,0x6e,0x74,0xfe,0xf6,0xd5,0x5e,0x70,0x2f,0x46,0x98,
00275         0x0c,0x82,0xb5,0xa8,0x40,0x31,0x90,0x0b,0x1c,0x9e,0x59,0xe7,0xc9,0x7f,0xbe,
00276         0xc7,0xe8,0xf3,0x23,0xa9,0x7a,0x7e,0x36,0xcc,0x88,0xbe,0x0f,0x1d,0x45,0xb7,
00277         0xff,0x58,0x5a,0xc5,0x4b,0xd4,0x07,0xb2,0x2b,0x41,0x54,0xaa,0xcc,0x8f,0x6d,
00278         0x7e,0xbf,0x48,0xe1,0xd8,0x14,0xcc,0x5e,0xd2,0x0f,0x80,0x37,0xe0,0xa7,0x97,
00279         0x15,0xee,0xf2,0x9b,0xe3,0x28,0x06,0xa1,0xd5,0x8b,0xb7,0xc5,0xda,0x76,0xf5,
00280         0x50,0xaa,0x3d,0x8a,0x1f,0xbf,0xf0,0xeb,0x19,0xcc,0xb1,0xa3,0x13,0xd5,0x5c,
00281         0xda,0x56,0xc9,0xec,0x2e,0xf2,0x96,0x32,0x38,0x7f,0xe8,0xd7,0x6e,0x3c,0x04,
00282         0x68,0x04,0x3e,0x8f,0x66,0x3f,0x48,0x60,0xee,0x12,0xbf,0x2d,0x5b,0x0b,0x74,
00283         0x74,0xd6,0xe6,0x94,0xf9,0x1e,0x6d,0xbe,0x11,0x59,0x74,0xa3,0x92,0x6f,0x12,
00284         0xfe,0xe5,0xe4,0x38,0x77,0x7c,0xb6,0xa9,0x32,0xdf,0x8c,0xd8,0xbe,0xc4,0xd0,
00285         0x73,0xb9,0x31,0xba,0x3b,0xc8,0x32,0xb6,0x8d,0x9d,0xd3,0x00,0x74,0x1f,0xa7,
00286         0xbf,0x8a,0xfc,0x47,0xed,0x25,0x76,0xf6,0x93,0x6b,0xa4,0x24,0x66,0x3a,0xab,
00287         0x63,0x9c,0x5a,0xe4,0xf5,0x68,0x34,0x23,0xb4,0x74,0x2b,0xf1,0xc9,0x78,0x23,
00288         0x8f,0x16,0xcb,0xe3,0x9d,0x65,0x2d,0xe3,0xfd,0xb8,0xbe,0xfc,0x84,0x8a,0xd9,
00289         0x22,0x22,0x2e,0x04,0xa4,0x03,0x7c,0x07,0x13,0xeb,0x57,0xa8,0x1a,0x23,0xf0,
00290         0xc7,0x34,0x73,0xfc,0x64,0x6c,0xea,0x30,0x6b,0x4b,0xcb,0xc8,0x86,0x2f,0x83,
00291         0x85,0xdd,0xfa,0x9d,0x4b,0x7f,0xa4,0xc0,0x87,0xe8,0x79,0x68,0x33,0x03,0xed,
00292         0x5b,0xdd,0x3a,0x06,0x2b,0x3c,0xf5,0xb3,0xa2,0x78,0xa6,0x6d,0x2a,0x13,0xf8,
00293         0x3f,0x44,0xf8,0x2d,0xdf,0x31,0x0e,0xe0,0x74,0xab,0x6a,0x36,0x45,0x97,0xe8,
00294         0x99,0xa0,0x25,0x5d,0xc1,0x64,0xf3,0x1c,0xc5,0x08,0x46,0x85,0x1d,0xf9,0xab,
00295         0x48,0x19,0x5d,0xed,0x7e,0xa1,0xb1,0xd5,0x10,0xbd,0x7e,0xe7,0x4d,0x73,0xfa,
00296         0xf3,0x6b,0xc3,0x1e,0xcf,0xa2,0x68,0x35,0x90,0x46,0xf4,0xeb,0x87,0x9f,0x92,
00297         0x40,0x09,0x43,0x8b,0x48,0x1c,0x6c,0xd7,0x88,0x9a,0x00,0x2e,0xd5,0xee,0x38,
00298         0x2b,0xc9,0x19,0x0d,0xa6,0xfc,0x02,0x6e,0x47,0x95,0x58,0xe4,0x47,0x56,0x77,
00299         0xe9,0xaa,0x9e,0x30,0x50,0xe2,0x76,0x56,0x94,0xdf,0xc8,0x1f,0x56,0xe8,0x80,
00300         0xb9,0x6e,0x71,0x60,0xc9,0x80,0xdd,0x98,0xed,0xd3,0xdf,0xff,0xff,0xff,0xff,
00301         0xff,0xff,0xff,0xff
00302         };
00303 
00304 
00305 #ifdef __cplusplus
00306 }
00307 #endif
00308 
00309 #endif //DH_GROUPS_H

Project hosted by: SourceForge.net Logo