28 lines
1.3 KiB
C
28 lines
1.3 KiB
C
/* Copyright (c) (2016,2019) Apple Inc. All rights reserved.
|
||
*
|
||
* corecrypto is licensed under Apple Inc.’s Internal Use License Agreement (which
|
||
* is contained in the License.txt file distributed with corecrypto) and only to
|
||
* people who accept that license. IMPORTANT: Any license rights granted to you by
|
||
* Apple Inc. (if any) are limited to internal use within your organization only on
|
||
* devices and computers you own or control, for the sole purpose of verifying the
|
||
* security characteristics and correct functioning of the Apple Software. You may
|
||
* not, directly or indirectly, redistribute the Apple Software or any portions thereof.
|
||
*/
|
||
|
||
static struct {
|
||
uint8_t l[1];
|
||
uint8_t p[96];
|
||
uint8_t g[1];
|
||
} apple768 = {
|
||
.l = { 160, },
|
||
.p = {
|
||
0xFF,0xFF,0xFF,0xFF, 0xFF,0xFF,0xFF,0xFF, 0x65,0x75,0x08,0x9B, 0xA8,0xF8,0x37,0x3B,
|
||
0xD4,0xA0,0xDF,0x17, 0xFC,0xCD,0xB0,0x9A, 0x94,0x61,0x9E,0x6E, 0x28,0xFC,0xCD,0xA3,
|
||
0x66,0xC5,0x05,0xDB, 0xBE,0xAF,0x8D,0xDC, 0x55,0x2A,0x24,0xE1, 0x69,0xEE,0x30,0x91,
|
||
0xBB,0x13,0x32,0xA7, 0x10,0x44,0xF8,0x68, 0x33,0x2D,0xDE,0xFD, 0xAA,0xE9,0x76,0x63,
|
||
0xCB,0xF6,0x08,0xFB, 0x89,0x4C,0x72,0x97, 0xB7,0x99,0x6E,0x88, 0x52,0x9B,0x1A,0x37,
|
||
0xEC,0x14,0xAD,0x08, 0x4D,0x0A,0x47,0x6D, 0xFF,0xFF,0xFF,0xFF, 0xFF,0xFF,0xFF,0xFF,
|
||
},
|
||
.g = { 2, },
|
||
};
|