all repos — TinyCrypT @ 39728dd7e0d3c64d6c747076bdd4472b9d7f9ff8

Short and sweet classical cryptographic primitives

tests/src/sha2/SHA256ShortMsg.cpp (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
#include <cstdint>
#include <cstring>
#include "gtest/gtest.h"
extern "C" {
#include "tinycrypt/sha2.h"
}
static uint8_t MSG0[] = {};
static uint8_t DIGEST0[] = {0xe3,0xb0,0xc4,0x42,0x98,0xfc,0x1c,0x14,0x9a,0xfb,0xf4,0xc8,0x99,0x6f,0xb9,0x24,0x27,0xae,0x41,0xe4,0x64,0x9b,0x93,0x4c,0xa4,0x95,0x99,0x1b,0x78,0x52,0xb8,0x55,};
static uint8_t MSG1[] = {0xd3,};
static uint8_t DIGEST1[] = {0x28,0x96,0x9c,0xdf,0xa7,0x4a,0x12,0xc8,0x2f,0x3b,0xad,0x96,0x0b,0x0b,0x00,0x0a,0xca,0x2a,0xc3,0x29,0xde,0xea,0x5c,0x23,0x28,0xeb,0xc6,0xf2,0xba,0x98,0x02,0xc1,};
static uint8_t MSG2[] = {0x11,0xaf,};
static uint8_t DIGEST2[] = {0x5c,0xa7,0x13,0x3f,0xa7,0x35,0x32,0x60,0x81,0x55,0x8a,0xc3,0x12,0xc6,0x20,0xee,0xca,0x99,0x70,0xd1,0xe7,0x0a,0x4b,0x95,0x53,0x3d,0x95,0x6f,0x07,0x2d,0x1f,0x98,};
static uint8_t MSG3[] = {0xb4,0x19,0x0e,};
static uint8_t DIGEST3[] = {0xdf,0xf2,0xe7,0x30,0x91,0xf6,0xc0,0x5e,0x52,0x88,0x96,0xc4,0xc8,0x31,0xb9,0x44,0x86,0x53,0xdc,0x2f,0xf0,0x43,0x52,0x8f,0x67,0x69,0x43,0x7b,0xc7,0xb9,0x75,0xc2,};
static uint8_t MSG4[] = {0x74,0xba,0x25,0x21,};
static uint8_t DIGEST4[] = {0xb1,0x6a,0xa5,0x6b,0xe3,0x88,0x0d,0x18,0xcd,0x41,0xe6,0x83,0x84,0xcf,0x1e,0xc8,0xc1,0x76,0x80,0xc4,0x5a,0x02,0xb1,0x57,0x5d,0xc1,0x51,0x89,0x23,0xae,0x8b,0x0e,};
static uint8_t MSG5[] = {0xc2,0x99,0x20,0x96,0x82,};
static uint8_t DIGEST5[] = {0xf0,0x88,0x7f,0xe9,0x61,0xc9,0xcd,0x3b,0xea,0xb9,0x57,0xe8,0x22,0x24,0x94,0xab,0xb9,0x69,0xb1,0xce,0x4c,0x65,0x57,0x97,0x6d,0xf8,0xb0,0xf6,0xd2,0x0e,0x91,0x66,};
static uint8_t MSG6[] = {0xe1,0xdc,0x72,0x4d,0x56,0x21,};
static uint8_t DIGEST6[] = {0xec,0xa0,0xa0,0x60,0xb4,0x89,0x63,0x62,0x25,0xb4,0xfa,0x64,0xd2,0x67,0xda,0xbb,0xe4,0x42,0x73,0x06,0x7a,0xc6,0x79,0xf2,0x08,0x20,0xbd,0xdc,0x6b,0x6a,0x90,0xac,};
static uint8_t MSG7[] = {0x06,0xe0,0x76,0xf5,0xa4,0x42,0xd5,};
static uint8_t DIGEST7[] = {0x3f,0xd8,0x77,0xe2,0x74,0x50,0xe6,0xbb,0xd5,0xd7,0x4b,0xb8,0x2f,0x98,0x70,0xc6,0x4c,0x66,0xe1,0x09,0x41,0x8b,0xaa,0x8e,0x6b,0xbc,0xff,0x35,0x5e,0x28,0x79,0x26,};
static uint8_t MSG8[] = {0x57,0x38,0xc9,0x29,0xc4,0xf4,0xcc,0xb6,};
static uint8_t DIGEST8[] = {0x96,0x3b,0xb8,0x8f,0x27,0xf5,0x12,0x77,0x7a,0xab,0x6c,0x8b,0x1a,0x02,0xc7,0x0e,0xc0,0xad,0x65,0x1d,0x42,0x8f,0x87,0x00,0x36,0xe1,0x91,0x71,0x20,0xfb,0x48,0xbf,};
static uint8_t MSG9[] = {0x33,0x34,0xc5,0x80,0x75,0xd3,0xf4,0x13,0x9e,};
static uint8_t DIGEST9[] = {0x07,0x8d,0xa3,0xd7,0x7e,0xd4,0x3b,0xd3,0x03,0x7a,0x43,0x3f,0xd0,0x34,0x18,0x55,0x02,0x37,0x93,0xf9,0xaf,0xd0,0x8b,0x4b,0x08,0xea,0x1e,0x55,0x97,0xce,0xef,0x20,};
static uint8_t MSG10[] = {0x74,0xcb,0x93,0x81,0xd8,0x9f,0x5a,0xa7,0x33,0x68,};
static uint8_t DIGEST10[] = {0x73,0xd6,0xfa,0xd1,0xca,0xaa,0x75,0xb4,0x3b,0x21,0x73,0x35,0x61,0xfd,0x39,0x58,0xbd,0xc5,0x55,0x19,0x4a,0x03,0x7c,0x2a,0xdd,0xec,0x19,0xdc,0x2d,0x7a,0x52,0xbd,};
static uint8_t MSG11[] = {0x76,0xed,0x24,0xa0,0xf4,0x0a,0x41,0x22,0x1e,0xbf,0xcf,};
static uint8_t DIGEST11[] = {0x04,0x4c,0xef,0x80,0x29,0x01,0x93,0x2e,0x46,0xdc,0x46,0xb2,0x54,0x5e,0x6c,0x99,0xc0,0xfc,0x32,0x3a,0x0e,0xd9,0x9b,0x08,0x1b,0xda,0x42,0x16,0x85,0x7f,0x38,0xac,};
static uint8_t MSG12[] = {0x9b,0xaf,0x69,0xcb,0xa3,0x17,0xf4,0x22,0xfe,0x26,0xa9,0xa0,};
static uint8_t DIGEST12[] = {0xfe,0x56,0x28,0x7c,0xd6,0x57,0xe4,0xaf,0xc5,0x0d,0xba,0x7a,0x3a,0x54,0xc2,0xa6,0x32,0x4b,0x88,0x6b,0xec,0xdc,0xd1,0xfa,0xe4,0x73,0xb7,0x69,0xe5,0x51,0xa0,0x9b,};
static uint8_t MSG13[] = {0x68,0x51,0x1c,0xdb,0x2d,0xbb,0xf3,0x53,0x0d,0x7f,0xb6,0x1c,0xbc,};
static uint8_t DIGEST13[] = {0xaf,0x53,0x43,0x04,0x66,0x71,0x5e,0x99,0xa6,0x02,0xfc,0x9f,0x59,0x45,0x71,0x9b,0x04,0xdd,0x24,0x26,0x7e,0x6a,0x98,0x47,0x1f,0x7a,0x78,0x69,0xbd,0x3b,0x43,0x13,};
static uint8_t MSG14[] = {0xaf,0x39,0x7a,0x8b,0x8d,0xd7,0x3a,0xb7,0x02,0xce,0x8e,0x53,0xaa,0x9f,};
static uint8_t DIGEST14[] = {0xd1,0x89,0x49,0x8a,0x34,0x63,0xb1,0x8e,0x84,0x6b,0x8a,0xb1,0xb4,0x15,0x83,0xb0,0xb7,0xef,0xc7,0x89,0xda,0xd8,0xa7,0xfb,0x88,0x5b,0xbf,0x8f,0xb5,0xb4,0x5c,0x5c,};
static uint8_t MSG15[] = {0x29,0x4a,0xf4,0x80,0x2e,0x5e,0x92,0x5e,0xb1,0xc6,0xcc,0x9c,0x72,0x4f,0x09,};
static uint8_t DIGEST15[] = {0xdc,0xba,0xf3,0x35,0x36,0x0d,0xe8,0x53,0xb9,0xcd,0xdf,0xda,0xfb,0x90,0xfa,0x75,0x56,0x7d,0x0d,0x3d,0x58,0xaf,0x8d,0xb9,0xd7,0x64,0x11,0x3a,0xef,0x57,0x01,0x25,};
static uint8_t MSG16[] = {0x0a,0x27,0x84,0x7c,0xdc,0x98,0xbd,0x6f,0x62,0x22,0x0b,0x04,0x6e,0xdd,0x76,0x2b,};
static uint8_t DIGEST16[] = {0x80,0xc2,0x5e,0xc1,0x60,0x05,0x87,0xe7,0xf2,0x8b,0x18,0xb1,0xb1,0x8e,0x3c,0xdc,0x89,0x92,0x8e,0x39,0xca,0xb3,0xbc,0x25,0xe4,0xd4,0xa4,0xc1,0x39,0xbc,0xed,0xc4,};
static uint8_t MSG17[] = {0x1b,0x50,0x3f,0xb9,0xa7,0x3b,0x16,0xad,0xa3,0xfc,0xf1,0x04,0x26,0x23,0xae,0x76,0x10,};
static uint8_t DIGEST17[] = {0xd5,0xc3,0x03,0x15,0xf7,0x2e,0xd0,0x5f,0xe5,0x19,0xa1,0xbf,0x75,0xab,0x5f,0xd0,0xff,0xec,0x5a,0xc1,0xac,0xb0,0xda,0xf6,0x6b,0x6b,0x76,0x95,0x98,0x59,0x45,0x09,};
static uint8_t MSG18[] = {0x59,0xeb,0x45,0xbb,0xbe,0xb0,0x54,0xb0,0xb9,0x73,0x34,0xd5,0x35,0x80,0xce,0x03,0xf6,0x99,};
static uint8_t DIGEST18[] = {0x32,0xc3,0x8c,0x54,0x18,0x9f,0x23,0x57,0xe9,0x6b,0xd7,0x7e,0xb0,0x0c,0x2b,0x9c,0x34,0x1e,0xbe,0xba,0xcc,0x29,0x45,0xf9,0x78,0x04,0xf5,0x9a,0x93,0x23,0x82,0x88,};
static uint8_t MSG19[] = {0x58,0xe5,0xa3,0x25,0x9c,0xb0,0xb6,0xd1,0x2c,0x83,0xf7,0x23,0x37,0x9e,0x35,0xfd,0x29,0x8b,0x60,};
static uint8_t DIGEST19[] = {0x9b,0x5b,0x37,0x81,0x6d,0xe8,0xfc,0xdf,0x3e,0xc1,0x0b,0x74,0x54,0x28,0x70,0x8d,0xf8,0xf3,0x91,0xc5,0x50,0xea,0x67,0x46,0xb2,0xca,0xfe,0x01,0x9c,0x2b,0x6a,0xce,};
static uint8_t MSG20[] = {0xc1,0xef,0x39,0xce,0xe5,0x8e,0x78,0xf6,0xfc,0xdc,0x12,0xe0,0x58,0xb7,0xf9,0x02,0xac,0xd1,0xa9,0x3b,};
static uint8_t DIGEST20[] = {0x6d,0xd5,0x2b,0x0d,0x8b,0x48,0xcc,0x81,0x46,0xce,0xbd,0x02,0x16,0xfb,0xf5,0xf6,0xef,0x7e,0xea,0xfc,0x0f,0xf2,0xff,0x9d,0x14,0x22,0xd6,0x34,0x55,0x55,0xa1,0x42,};
static uint8_t MSG21[] = {0x9c,0xab,0x7d,0x7d,0xca,0xec,0x98,0xcb,0x3a,0xc6,0xc6,0x4d,0xd5,0xd4,0x47,0x0d,0x0b,0x10,0x3a,0x81,0x0c,};
static uint8_t DIGEST21[] = {0x44,0xd3,0x48,0x09,0xfc,0x60,0xd1,0xfc,0xaf,0xa7,0xf3,0x7b,0x79,0x4d,0x1d,0x3a,0x76,0x5d,0xd0,0xd2,0x31,0x94,0xeb,0xbe,0x34,0x0f,0x01,0x3f,0x0c,0x39,0xb6,0x13,};
static uint8_t MSG22[] = {0xea,0x15,0x7c,0x02,0xeb,0xaf,0x1b,0x22,0xde,0x22,0x1b,0x53,0xf2,0x35,0x39,0x36,0xd2,0x35,0x9d,0x1e,0x1c,0x97,};
static uint8_t DIGEST22[] = {0x9d,0xf5,0xc1,0x6a,0x3f,0x58,0x04,0x06,0xf0,0x7d,0x96,0x14,0x93,0x03,0xd8,0xc4,0x08,0x86,0x9b,0x32,0x05,0x3b,0x72,0x6c,0xf3,0xde,0xfd,0x24,0x1e,0x48,0x49,0x57,};
static uint8_t MSG23[] = {0xda,0x99,0x9b,0xc1,0xf9,0xc7,0xac,0xff,0x32,0x82,0x8a,0x73,0xe6,0x72,0xd0,0xa4,0x92,0xf6,0xee,0x89,0x5c,0x68,0x67,};
static uint8_t DIGEST23[] = {0x67,0x2b,0x54,0xe4,0x3f,0x41,0xee,0x77,0x58,0x4b,0xdf,0x8b,0xf8,0x54,0xd9,0x7b,0x62,0x52,0xc9,0x18,0xf7,0xea,0x2d,0x26,0xbc,0x40,0x97,0xea,0x53,0xa8,0x8f,0x10,};
static uint8_t MSG24[] = {0x47,0x99,0x13,0x01,0x15,0x6d,0x1d,0x97,0x7c,0x03,0x38,0xef,0xbc,0xad,0x41,0x00,0x41,0x33,0xae,0xfb,0xca,0x6b,0xcf,0x7e,};
static uint8_t DIGEST24[] = {0xfe,0xeb,0x4b,0x2b,0x59,0xfe,0xc8,0xfd,0xb1,0xe5,0x51,0x94,0xa4,0x93,0xd8,0xc8,0x71,0x75,0x7b,0x57,0x23,0x67,0x5e,0x93,0xd3,0xac,0x03,0x4b,0x38,0x0b,0x7f,0xc9,};
static uint8_t MSG25[] = {0x2e,0x7e,0xa8,0x4d,0xa4,0xbc,0x4d,0x7c,0xfb,0x46,0x3e,0x3f,0x2c,0x86,0x47,0x05,0x7a,0xff,0xf3,0xfb,0xec,0xec,0xa1,0xd2,0x00,};
static uint8_t DIGEST25[] = {0x76,0xe3,0xac,0xbc,0x71,0x88,0x36,0xf2,0xdf,0x8a,0xd2,0xd0,0xd2,0xd7,0x6f,0x0c,0xfa,0x5f,0xea,0x09,0x86,0xbe,0x91,0x8f,0x10,0xbc,0xee,0x73,0x0d,0xf4,0x41,0xb9,};
static uint8_t MSG26[] = {0x47,0xc7,0x70,0xeb,0x45,0x49,0xb6,0xef,0xf6,0x38,0x1d,0x62,0xe9,0xbe,0xb4,0x64,0xcd,0x98,0xd3,0x41,0xcc,0x1c,0x09,0x98,0x1a,0x7a,};
static uint8_t DIGEST26[] = {0x67,0x33,0x80,0x9c,0x73,0xe5,0x36,0x66,0xc7,0x35,0xb3,0xbd,0x3d,0xaf,0x87,0xeb,0xc7,0x7c,0x72,0x75,0x61,0x50,0xa6,0x16,0xa1,0x94,0x10,0x8d,0x71,0x23,0x12,0x72,};
static uint8_t MSG27[] = {0xac,0x4c,0x26,0xd8,0xb4,0x3b,0x85,0x79,0xd8,0xf6,0x1c,0x98,0x07,0x02,0x6e,0x83,0xe9,0xb5,0x86,0xe1,0x15,0x9b,0xd4,0x3b,0x85,0x19,0x37,};
static uint8_t DIGEST27[] = {0x0e,0x6e,0x3c,0x14,0x3c,0x3a,0x5f,0x7f,0x38,0x50,0x5e,0xd6,0xad,0xc9,0xb4,0x8c,0x18,0xed,0xf6,0xde,0xdf,0x11,0x63,0x5f,0x6e,0x8f,0x9a,0xc7,0x3c,0x39,0xfe,0x9e,};
static uint8_t MSG28[] = {0x07,0x77,0xfc,0x1e,0x1c,0xa4,0x73,0x04,0xc2,0xe2,0x65,0x69,0x28,0x38,0x10,0x9e,0x26,0xaa,0xb9,0xe5,0xc4,0xae,0x4e,0x86,0x00,0xdf,0x4b,0x1f,};
static uint8_t DIGEST28[] = {0xff,0xb4,0xfc,0x03,0xe0,0x54,0xf8,0xec,0xbc,0x31,0x47,0x0f,0xc0,0x23,0xbe,0xdc,0xd4,0xa4,0x06,0xb9,0xdd,0x56,0xc7,0x1d,0xa1,0xb6,0x60,0xdc,0xc4,0x84,0x2c,0x65,};
static uint8_t MSG29[] = {0x1a,0x57,0x25,0x1c,0x43,0x1d,0x4e,0x6c,0x2e,0x06,0xd6,0x52,0x46,0xa2,0x96,0x91,0x50,0x71,0xa5,0x31,0x42,0x5e,0xcf,0x25,0x59,0x89,0x42,0x2a,0x66,};
static uint8_t DIGEST29[] = {0xc6,0x44,0x61,0x2c,0xd3,0x26,0xb3,0x8b,0x1c,0x68,0x13,0xb1,0xda,0xde,0xd3,0x44,0x48,0x80,0x5a,0xef,0x31,0x7c,0x35,0xf5,0x48,0xdf,0xb4,0xa0,0xd7,0x4b,0x81,0x06,};
static uint8_t MSG30[] = {0x9b,0x24,0x5f,0xda,0xd9,0xba,0xeb,0x89,0x0d,0x9c,0x0d,0x0e,0xff,0x81,0x6e,0xfb,0x4c,0xa1,0x38,0x61,0x0b,0xc7,0xd7,0x8c,0xb1,0xa8,0x01,0xed,0x32,0x73,};
static uint8_t DIGEST30[] = {0xc0,0xe2,0x9e,0xee,0xb0,0xd3,0xa7,0x70,0x79,0x47,0xe6,0x23,0xcd,0xc7,0xd1,0x89,0x9a,0xdc,0x70,0xdd,0x78,0x61,0x20,0x5e,0xa5,0xe5,0x81,0x39,0x54,0xfb,0x79,0x57,};
static uint8_t MSG31[] = {0x95,0xa7,0x65,0x80,0x9c,0xaf,0x30,0xad,0xa9,0x0a,0xd6,0xd6,0x1c,0x2b,0x4b,0x30,0x25,0x0d,0xf0,0xa7,0xce,0x23,0xb7,0x75,0x3c,0x91,0x87,0xf4,0x31,0x9c,0xe2,};
static uint8_t DIGEST31[] = {0xa4,0x13,0x9b,0x74,0xb1,0x02,0xcf,0x1e,0x2f,0xce,0x22,0x9a,0x6c,0xd8,0x4c,0x87,0x50,0x1f,0x50,0xaf,0xa4,0xc8,0x0f,0xea,0xcf,0x7d,0x8c,0xf5,0xed,0x94,0xf0,0x42,};
static uint8_t MSG32[] = {0x09,0xfc,0x1a,0xcc,0xc2,0x30,0xa2,0x05,0xe4,0xa2,0x08,0xe6,0x4a,0x8f,0x20,0x42,0x91,0xf5,0x81,0xa1,0x27,0x56,0x39,0x2d,0xa4,0xb8,0xc0,0xcf,0x5e,0xf0,0x2b,0x95,};
static uint8_t DIGEST32[] = {0x4f,0x44,0xc1,0xc7,0xfb,0xeb,0xb6,0xf9,0x60,0x18,0x29,0xf3,0x89,0x7b,0xfd,0x65,0x0c,0x56,0xfa,0x07,0x84,0x4b,0xe7,0x64,0x89,0x07,0x63,0x56,0xac,0x18,0x86,0xa4,};
static uint8_t MSG33[] = {0x05,0x46,0xf7,0xb8,0x68,0x2b,0x5b,0x95,0xfd,0x32,0x38,0x5f,0xaf,0x25,0x85,0x4c,0xb3,0xf7,0xb4,0x0c,0xc8,0xfa,0x22,0x9f,0xbd,0x52,0xb1,0x69,0x34,0xaa,0xb3,0x88,0xa7,};
static uint8_t DIGEST33[] = {0xb3,0x1a,0xd3,0xcd,0x02,0xb1,0x0d,0xb2,0x82,0xb3,0x57,0x6c,0x05,0x9b,0x74,0x6f,0xb2,0x4c,0xa6,0xf0,0x9f,0xef,0x69,0x40,0x2d,0xc9,0x0e,0xce,0x74,0x21,0xcb,0xb7,};
static uint8_t MSG34[] = {0xb1,0x2d,0xb4,0xa1,0x02,0x55,0x29,0xb3,0xb7,0xb1,0xe4,0x5c,0x6d,0xbc,0x7b,0xaa,0x88,0x97,0xa0,0x57,0x6e,0x66,0xf6,0x4b,0xf3,0xf8,0x23,0x61,0x13,0xa6,0x27,0x6e,0xe7,0x7d,};
static uint8_t DIGEST34[] = {0x1c,0x38,0xbf,0x6b,0xbf,0xd3,0x22,0x92,0xd6,0x7d,0x1d,0x65,0x1f,0xd9,0xd5,0xb6,0x23,0xb6,0xec,0x1e,0x85,0x44,0x06,0x22,0x3f,0x51,0xd0,0xdf,0x46,0x96,0x87,0x12,};
static uint8_t MSG35[] = {0xe6,0x8c,0xb6,0xd8,0xc1,0x86,0x6c,0x0a,0x71,0xe7,0x31,0x3f,0x83,0xdc,0x11,0xa5,0x80,0x9c,0xf5,0xcf,0xbe,0xed,0x1a,0x58,0x7c,0xe9,0xc2,0xc9,0x2e,0x02,0x2a,0xbc,0x16,0x44,0xbb,};
static uint8_t DIGEST35[] = {0xc2,0x68,0x4c,0x0d,0xbb,0x85,0xc2,0x32,0xb6,0xda,0x4f,0xb5,0x14,0x7d,0xd0,0x62,0x44,0x29,0xec,0x7e,0x65,0x79,0x91,0xed,0xd9,0x5e,0xda,0x37,0xa5,0x87,0x26,0x9e,};
static uint8_t MSG36[] = {0x4e,0x3d,0x8a,0xc3,0x6d,0x61,0xd9,0xe5,0x14,0x80,0x83,0x11,0x55,0xb2,0x53,0xb3,0x79,0x69,0xfe,0x7e,0xf4,0x9d,0xb3,0xb3,0x99,0x26,0xf3,0xa0,0x0b,0x69,0xa3,0x67,0x74,0x36,0x60,0x00,};
static uint8_t DIGEST36[] = {0xbf,0x9d,0x5e,0x5b,0x53,0x93,0x05,0x3f,0x05,0x5b,0x38,0x0b,0xae,0xd7,0xe7,0x92,0xae,0x85,0xad,0x37,0xc0,0xad,0xa5,0xfd,0x45,0x19,0x54,0x2c,0xcc,0x46,0x1c,0xf3,};
static uint8_t MSG37[] = {0x03,0xb2,0x64,0xbe,0x51,0xe4,0xb9,0x41,0x86,0x4f,0x9b,0x70,0xb4,0xc9,0x58,0xf5,0x35,0x5a,0xac,0x29,0x4b,0x4b,0x87,0xcb,0x03,0x7f,0x11,0xf8,0x5f,0x07,0xeb,0x57,0xb3,0xf0,0xb8,0x95,0x50,};
static uint8_t DIGEST37[] = {0xd1,0xf8,0xbd,0x68,0x40,0x01,0xac,0x5a,0x4b,0x67,0xbb,0xf7,0x9f,0x87,0xde,0x52,0x4d,0x2d,0xa9,0x9a,0xc0,0x14,0xde,0xc3,0xe4,0x18,0x77,0x28,0xf4,0x55,0x74,0x71,};
static uint8_t MSG38[] = {0xd0,0xfe,0xfd,0x96,0x78,0x7c,0x65,0xff,0xa7,0xf9,0x10,0xd6,0xd0,0xad,0xa6,0x3d,0x64,0xd5,0xc4,0x67,0x99,0x60,0xe7,0xf0,0x6a,0xeb,0x8c,0x70,0xdf,0xef,0x95,0x4f,0x8e,0x39,0xef,0xdb,0x62,0x9b,};
static uint8_t DIGEST38[] = {0x49,0xba,0x38,0xdb,0x85,0xc2,0x79,0x6f,0x85,0xff,0xd5,0x7d,0xd5,0xec,0x33,0x70,0x07,0x41,0x45,0x28,0xae,0x33,0x93,0x5b,0x10,0x2d,0x16,0xa6,0xb9,0x1b,0xa6,0xc1,};
static uint8_t MSG39[] = {0xb7,0xc7,0x9d,0x7e,0x5f,0x1e,0xec,0xcd,0xfe,0xdf,0x0e,0x7b,0xf4,0x3e,0x73,0x0d,0x44,0x7e,0x60,0x7d,0x8d,0x14,0x89,0x82,0x3d,0x09,0xe1,0x12,0x01,0xa0,0xb1,0x25,0x80,0x39,0xe7,0xbd,0x48,0x75,0xb1,};
static uint8_t DIGEST39[] = {0x72,0x5e,0x6f,0x8d,0x88,0x8e,0xba,0xf9,0x08,0xb7,0x69,0x22,0x59,0xab,0x88,0x39,0xc3,0x24,0x8e,0xdd,0x22,0xca,0x11,0x5b,0xb1,0x3e,0x02,0x58,0x08,0x65,0x47,0x00,};
static uint8_t MSG40[] = {0x64,0xcd,0x36,0x3e,0xcc,0xe0,0x5f,0xdf,0xda,0x24,0x86,0xd0,0x11,0xa3,0xdb,0x95,0xb5,0x20,0x6a,0x19,0xd3,0x05,0x40,0x46,0x81,0x9d,0xd0,0xd3,0x67,0x83,0x95,0x5d,0x7e,0x5b,0xf8,0xba,0x18,0xbf,0x73,0x8a,};
static uint8_t DIGEST40[] = {0x32,0xca,0xef,0x02,0x4f,0x84,0xe9,0x7c,0x30,0xb4,0xa7,0xb9,0xd0,0x4b,0x67,0x8b,0x3d,0x8a,0x6e,0xb2,0x25,0x9d,0xff,0x5b,0x7f,0x7c,0x01,0x1f,0x09,0x08,0x45,0xf8,};
static uint8_t MSG41[] = {0x6a,0xc6,0xc6,0x3d,0x61,0x8e,0xaf,0x00,0xd9,0x1c,0x5e,0x28,0x07,0xe8,0x3c,0x09,0x39,0x12,0xb8,0xe2,0x02,0xf7,0x8e,0x13,0x97,0x03,0x49,0x8a,0x79,0xc6,0x06,0x7f,0x54,0x49,0x7c,0x61,0x27,0xa2,0x39,0x10,0xa6,};
static uint8_t DIGEST41[] = {0x4b,0xb3,0x3e,0x7c,0x69,0x16,0xe0,0x8a,0x9b,0x3e,0xd6,0xbc,0xef,0x79,0x0a,0xaa,0xee,0x0d,0xcf,0x2e,0x7a,0x01,0xaf,0xb0,0x56,0x18,0x2d,0xea,0x2d,0xad,0x7d,0x63,};
static uint8_t MSG42[] = {0xd2,0x68,0x26,0xdb,0x9b,0xae,0xaa,0x89,0x26,0x91,0xb6,0x89,0x00,0xb9,0x61,0x63,0x20,0x8e,0x80,0x6a,0x1d,0xa0,0x77,0x42,0x9e,0x45,0x4f,0xa0,0x11,0x84,0x09,0x51,0xa0,0x31,0x32,0x7e,0x60,0x5a,0xb8,0x2e,0xcc,0xe2,};
static uint8_t DIGEST42[] = {0x3a,0xc7,0xac,0x6b,0xed,0x82,0xfd,0xc8,0xcd,0x15,0xb7,0x46,0xf0,0xee,0x74,0x89,0x15,0x81,0x92,0xc2,0x38,0xf3,0x71,0xc1,0x88,0x3c,0x9f,0xe9,0x0b,0x3e,0x28,0x31,};
static uint8_t MSG43[] = {0x3f,0x7a,0x05,0x9b,0x65,0xd6,0xcb,0x02,0x49,0x20,0x4a,0xac,0x10,0xb9,0xf1,0xa4,0xac,0x9e,0x58,0x68,0xad,0xeb,0xbe,0x93,0x5a,0x9e,0xb5,0xb9,0x01,0x9e,0x1c,0x93,0x8b,0xfc,0x4e,0x5c,0x53,0x78,0x99,0x7a,0x39,0x47,0xf2,};
static uint8_t DIGEST43[] = {0xbf,0xce,0x80,0x95,0x34,0xee,0xfe,0x87,0x12,0x73,0x96,0x4d,0x32,0xf0,0x91,0xfe,0x75,0x6c,0x71,0xa7,0xf5,0x12,0xef,0x5f,0x23,0x00,0xbc,0xd5,0x7f,0x69,0x9e,0x74,};
static uint8_t MSG44[] = {0x60,0xff,0xcb,0x23,0xd6,0xb8,0x8e,0x48,0x5b,0x92,0x0a,0xf8,0x1d,0x10,0x83,0xf6,0x29,0x1d,0x06,0xac,0x8c,0xa3,0xa9,0x65,0xb8,0x59,0x14,0xbc,0x2a,0xdd,0x40,0x54,0x4a,0x02,0x7f,0xca,0x93,0x6b,0xbd,0xe8,0xf3,0x59,0x05,0x1c,};
static uint8_t DIGEST44[] = {0x1d,0x26,0xf3,0xe0,0x4f,0x89,0xb4,0xea,0xa9,0xdb,0xed,0x92,0x31,0xbb,0x05,0x1e,0xef,0x2e,0x83,0x11,0xad,0x26,0xfe,0x53,0xd0,0xbf,0x0b,0x82,0x1e,0xaf,0x75,0x67,};
static uint8_t MSG45[] = {0x9e,0xcd,0x07,0xb6,0x84,0xbb,0x9e,0x0e,0x66,0x92,0xe3,0x20,0xce,0xc4,0x51,0x0c,0xa7,0x9f,0xcd,0xb3,0xa2,0x21,0x2c,0x26,0xd9,0x0d,0xf6,0x5d,0xb3,0x3e,0x69,0x2d,0x07,0x3c,0xc1,0x74,0x84,0x0d,0xb7,0x97,0x50,0x4e,0x48,0x2e,0xef,};
static uint8_t DIGEST45[] = {0x0f,0xfe,0xb6,0x44,0xa4,0x9e,0x78,0x7c,0xcc,0x69,0x70,0xfe,0x29,0x70,0x5a,0x4f,0x4c,0x2b,0xfc,0xfe,0x7d,0x19,0x74,0x1c,0x15,0x83,0x33,0xff,0x69,0x82,0xcc,0x9c,};
static uint8_t MSG46[] = {0x9d,0x64,0xde,0x71,0x61,0x89,0x58,0x84,0xe7,0xfa,0x3d,0x6e,0x9e,0xb9,0x96,0xe7,0xeb,0xe5,0x11,0xb0,0x1f,0xe1,0x9c,0xd4,0xa6,0xb3,0x32,0x2e,0x80,0xaa,0xf5,0x2b,0xf6,0x44,0x7e,0xd1,0x85,0x4e,0x71,0x00,0x1f,0x4d,0x54,0xf8,0x93,0x1d,};
static uint8_t DIGEST46[] = {0xd0,0x48,0xee,0x15,0x24,0x01,0x4a,0xdf,0x9a,0x56,0xe6,0x0a,0x38,0x82,0x77,0xde,0x19,0x4c,0x69,0x4c,0xc7,0x87,0xfc,0x5a,0x1b,0x55,0x4e,0xa9,0xf0,0x7a,0xbf,0xdf,};
static uint8_t MSG47[] = {0xc4,0xad,0x3c,0x5e,0x78,0xd9,0x17,0xec,0xb0,0xcb,0xbc,0xd1,0xc4,0x81,0xfc,0x2a,0xaf,0x23,0x2f,0x7e,0x28,0x97,0x79,0xf4,0x0e,0x50,0x4c,0xc3,0x09,0x66,0x2e,0xe9,0x6f,0xec,0xbd,0x20,0x64,0x7e,0xf0,0x0e,0x46,0x19,0x9f,0xbc,0x48,0x2f,0x46,};
static uint8_t DIGEST47[] = {0x50,0xdb,0xf4,0x00,0x66,0xf8,0xd2,0x70,0x48,0x4e,0xe2,0xef,0x66,0x32,0x28,0x2d,0xfa,0x30,0x0a,0x85,0xa8,0x53,0x0e,0xce,0xeb,0x0e,0x04,0x27,0x5e,0x1c,0x1e,0xfd,};
static uint8_t MSG48[] = {0x4e,0xef,0x51,0x07,0x45,0x9b,0xdd,0xf8,0xf2,0x4f,0xc7,0x65,0x6f,0xd4,0x89,0x6d,0xa8,0x71,0x1d,0xb5,0x04,0x00,0xc0,0x16,0x48,0x47,0xf6,0x92,0xb8,0x86,0xce,0x8d,0x7f,0x4d,0x67,0x39,0x50,0x90,0xb3,0x53,0x4e,0xfd,0x7b,0x0d,0x29,0x8d,0xa3,0x4b,};
static uint8_t DIGEST48[] = {0x7c,0x5d,0x14,0xed,0x83,0xda,0xb8,0x75,0xac,0x25,0xce,0x7f,0xee,0xd6,0xef,0x83,0x7d,0x58,0xe7,0x9d,0xc6,0x01,0xfb,0x3c,0x1f,0xca,0x48,0xd4,0x46,0x4e,0x8b,0x83,};
static uint8_t MSG49[] = {0x04,0x7d,0x27,0x58,0xe7,0xc2,0xc9,0x62,0x3f,0x9b,0xdb,0x93,0xb6,0x59,0x7c,0x5e,0x84,0xa0,0xcd,0x34,0xe6,0x10,0x01,0x4b,0xcb,0x25,0xb4,0x9e,0xd0,0x5c,0x7e,0x35,0x6e,0x98,0xc7,0xa6,0x72,0xc3,0xdd,0xdc,0xae,0xb8,0x43,0x17,0xef,0x61,0x4d,0x34,0x2f,};
static uint8_t DIGEST49[] = {0x7d,0x53,0xec,0xcd,0x03,0xda,0x37,0xbf,0x58,0xc1,0x96,0x2a,0x8f,0x0f,0x70,0x8a,0x5c,0x5c,0x44,0x7f,0x6a,0x7e,0x9e,0x26,0x13,0x7c,0x16,0x9d,0x5b,0xdd,0x82,0xe4,};
static uint8_t MSG50[] = {0x3d,0x83,0xdf,0x37,0x17,0x2c,0x81,0xaf,0xd0,0xde,0x11,0x51,0x39,0xfb,0xf4,0x39,0x0c,0x22,0xe0,0x98,0xc5,0xaf,0x4c,0x5a,0xb4,0x85,0x24,0x06,0x51,0x0b,0xc0,0xe6,0xcf,0x74,0x17,0x69,0xf4,0x44,0x30,0xc5,0x27,0x0f,0xda,0xe0,0xcb,0x84,0x9d,0x71,0xcb,0xab,};
static uint8_t DIGEST50[] = {0x99,0xdc,0x77,0x2e,0x91,0xea,0x02,0xd9,0xe4,0x21,0xd5,0x52,0xd6,0x19,0x01,0x01,0x6b,0x9f,0xd4,0xad,0x2d,0xf4,0xa8,0x21,0x2c,0x1e,0xc5,0xba,0x13,0x89,0x3a,0xb2,};
static uint8_t MSG51[] = {0x33,0xfd,0x9b,0xc1,0x7e,0x2b,0x27,0x1f,0xa0,0x4c,0x6b,0x93,0xc0,0xbd,0xea,0xe9,0x86,0x54,0xa7,0x68,0x2d,0x31,0xd9,0xb4,0xda,0xb7,0xe6,0xf3,0x2c,0xd5,0x8f,0x2f,0x14,0x8a,0x68,0xfb,0xe7,0xa8,0x8c,0x5a,0xb1,0xd8,0x8e,0xdc,0xcd,0xde,0xb3,0x0a,0xb2,0x1e,0x5e,};
static uint8_t DIGEST51[] = {0xce,0xfd,0xae,0x1a,0x3d,0x75,0xe7,0x92,0xe8,0x69,0x8d,0x5e,0x71,0xf1,0x77,0xcc,0x76,0x13,0x14,0xe9,0xad,0x5d,0xf9,0x60,0x2c,0x6e,0x60,0xae,0x65,0xc4,0xc2,0x67,};
static uint8_t MSG52[] = {0x77,0xa8,0x79,0xcf,0xa1,0x1d,0x7f,0xca,0xc7,0xa8,0x28,0x2c,0xc3,0x8a,0x43,0xdc,0xf3,0x76,0x43,0xcc,0x90,0x98,0x37,0x21,0x3b,0xd6,0xfd,0x95,0xd9,0x56,0xb2,0x19,0xa1,0x40,0x6c,0xbe,0x73,0xc5,0x2c,0xd5,0x6c,0x60,0x0e,0x55,0xb7,0x5b,0xc3,0x7e,0xa6,0x96,0x41,0xbc,};
static uint8_t DIGEST52[] = {0xc9,0x9d,0x64,0xfa,0x4d,0xad,0xd4,0xbc,0x8a,0x38,0x95,0x31,0xc6,0x8b,0x45,0x90,0xc6,0xdf,0x0b,0x90,0x99,0xc4,0xd5,0x83,0xbc,0x00,0x88,0x9f,0xb7,0xb9,0x80,0x08,};
static uint8_t MSG53[] = {0x45,0xa3,0xe6,0xb8,0x65,0x27,0xf2,0x0b,0x45,0x37,0xf5,0xaf,0x96,0xcf,0xc5,0xad,0x87,0x77,0xa2,0xdd,0xe6,0xcf,0x75,0x11,0x88,0x6c,0x55,0x90,0xec,0xe2,0x4f,0xc6,0x1b,0x22,0x67,0x39,0xd2,0x07,0xda,0xbf,0xe3,0x2b,0xa6,0xef,0xd9,0xff,0x4c,0xd5,0xdb,0x1b,0xd5,0xea,0xd3,};
static uint8_t DIGEST53[] = {0x4d,0x12,0xa8,0x49,0x04,0x7c,0x6a,0xcd,0x4b,0x2e,0xee,0x6b,0xe3,0x5f,0xa9,0x05,0x1b,0x02,0xd2,0x1d,0x50,0xd4,0x19,0x54,0x30,0x08,0xc1,0xd8,0x2c,0x42,0x70,0x72,};
static uint8_t MSG54[] = {0x25,0x36,0x2a,0x4b,0x9d,0x74,0xbd,0xe6,0x12,0x8c,0x4f,0xdc,0x67,0x23,0x05,0x90,0x09,0x47,0xbc,0x3a,0xda,0x9d,0x9d,0x31,0x6e,0xbc,0xf1,0x66,0x7a,0xd4,0x36,0x31,0x89,0x93,0x72,0x51,0xf1,0x49,0xc7,0x2e,0x06,0x4a,0x48,0x60,0x8d,0x94,0x0b,0x75,0x74,0xb1,0x7f,0xef,0xc0,0xdf,};
static uint8_t DIGEST54[] = {0xf8,0xe4,0xcc,0xab,0x6c,0x97,0x92,0x29,0xf6,0x06,0x6c,0xc0,0xcb,0x0c,0xfa,0x81,0xbb,0x21,0x44,0x7c,0x16,0xc6,0x87,0x73,0xbe,0x7e,0x55,0x8e,0x9f,0x9d,0x79,0x8d,};
static uint8_t MSG55[] = {0x3e,0xbf,0xb0,0x6d,0xb8,0xc3,0x8d,0x5b,0xa0,0x37,0xf1,0x36,0x3e,0x11,0x85,0x50,0xaa,0xd9,0x46,0x06,0xe2,0x68,0x35,0xa0,0x1a,0xf0,0x50,0x78,0x53,0x3c,0xc2,0x5f,0x2f,0x39,0x57,0x3c,0x04,0xb6,0x32,0xf6,0x2f,0x68,0xc2,0x94,0xab,0x31,0xf2,0xa3,0xe2,0xa1,0xa0,0xd8,0xc2,0xbe,0x51,};
static uint8_t DIGEST55[] = {0x65,0x95,0xa2,0xef,0x53,0x7a,0x69,0xba,0x85,0x83,0xdf,0xbf,0x7f,0x5b,0xec,0x0a,0xb1,0xf9,0x3c,0xe4,0xc8,0xee,0x19,0x16,0xef,0xf4,0x4a,0x93,0xaf,0x57,0x49,0xc4,};
static uint8_t MSG56[] = {0x2d,0x52,0x44,0x7d,0x12,0x44,0xd2,0xeb,0xc2,0x86,0x50,0xe7,0xb0,0x56,0x54,0xba,0xd3,0x5b,0x3a,0x68,0xee,0xdc,0x7f,0x85,0x15,0x30,0x6b,0x49,0x6d,0x75,0xf3,0xe7,0x33,0x85,0xdd,0x1b,0x00,0x26,0x25,0x02,0x4b,0x81,0xa0,0x2f,0x2f,0xd6,0xdf,0xfb,0x6e,0x6d,0x56,0x1c,0xb7,0xd0,0xbd,0x7a,};
static uint8_t DIGEST56[] = {0xcf,0xb8,0x8d,0x6f,0xaf,0x2d,0xe3,0xa6,0x9d,0x36,0x19,0x5a,0xce,0xc2,0xe2,0x55,0xe2,0xaf,0x2b,0x7d,0x93,0x39,0x97,0xf3,0x48,0xe0,0x9f,0x6c,0xe5,0x75,0x83,0x60,};
static uint8_t MSG57[] = {0x4c,0xac,0xe4,0x22,0xe4,0xa0,0x15,0xa7,0x54,0x92,0xb3,0xb3,0xbb,0xfb,0xdf,0x37,0x58,0xea,0xff,0x4f,0xe5,0x04,0xb4,0x6a,0x26,0xc9,0x0d,0xac,0xc1,0x19,0xfa,0x90,0x50,0xf6,0x03,0xd2,0xb5,0x8b,0x39,0x8c,0xad,0x6d,0x6d,0x9f,0xa9,0x22,0xa1,0x54,0xd9,0xe0,0xbc,0x43,0x89,0x96,0x82,0x74,0xb0,};
static uint8_t DIGEST57[] = {0x4d,0x54,0xb2,0xd2,0x84,0xa6,0x79,0x45,0x81,0x22,0x4e,0x08,0xf6,0x75,0x54,0x1c,0x8f,0xea,0xb6,0xee,0xfa,0x3a,0xc1,0xcf,0xe5,0xda,0x4e,0x03,0xe6,0x2f,0x72,0xe4,};
static uint8_t MSG58[] = {0x86,0x20,0xb8,0x6f,0xbc,0xaa,0xce,0x4f,0xf3,0xc2,0x92,0x1b,0x84,0x66,0xdd,0xd7,0xba,0xca,0xe0,0x7e,0xef,0xef,0x69,0x3c,0xf1,0x77,0x62,0xdc,0xab,0xb8,0x9a,0x84,0x01,0x0f,0xc9,0xa0,0xfb,0x76,0xce,0x1c,0x26,0x59,0x3a,0xd6,0x37,0xa6,0x12,0x53,0xf2,0x24,0xd1,0xb1,0x4a,0x05,0xad,0xdc,0xca,0xbe,};
static uint8_t DIGEST58[] = {0xdb,0xa4,0x90,0x25,0x6c,0x97,0x20,0xc5,0x4c,0x61,0x2a,0x5b,0xd1,0xef,0x57,0x3c,0xd5,0x1d,0xc1,0x2b,0x3e,0x7b,0xd8,0xc6,0xdb,0x2e,0xab,0xe0,0xaa,0xcb,0x84,0x6b,};
static uint8_t MSG59[] = {0xd1,0xbe,0x3f,0x13,0xfe,0xba,0xfe,0xfc,0x14,0x41,0x4d,0x9f,0xb7,0xf6,0x93,0xdb,0x16,0xdc,0x1a,0xe2,0x70,0xc5,0xb6,0x47,0xd8,0x0d,0xa8,0x58,0x35,0x87,0xc1,0xad,0x8c,0xb8,0xcb,0x01,0x82,0x43,0x24,0x41,0x1c,0xa5,0xac,0xe3,0xca,0x22,0xe1,0x79,0xa4,0xff,0x49,0x86,0xf3,0xf2,0x11,0x90,0xf3,0xd7,0xf3,};
static uint8_t DIGEST59[] = {0x02,0x80,0x49,0x78,0xeb,0xa6,0xe1,0xde,0x65,0xaf,0xdb,0xc6,0xa6,0x09,0x1e,0xd6,0xb1,0xec,0xee,0x51,0xe8,0xbf,0xf4,0x06,0x46,0xa2,0x51,0xde,0x66,0x78,0xb7,0xef,};
static uint8_t MSG60[] = {0xf4,0x99,0xcc,0x3f,0x6e,0x3c,0xf7,0xc3,0x12,0xff,0xdf,0xba,0x61,0xb1,0x26,0x0c,0x37,0x12,0x9c,0x1a,0xfb,0x39,0x10,0x47,0x19,0x33,0x67,0xb7,0xb2,0xed,0xeb,0x57,0x92,0x53,0xe5,0x1d,0x62,0xba,0x6d,0x91,0x1e,0x7b,0x81,0x8c,0xca,0xe1,0x55,0x3f,0x61,0x46,0xea,0x78,0x0f,0x78,0xe2,0x21,0x9f,0x62,0x93,0x09,};
static uint8_t DIGEST60[] = {0x0b,0x66,0xc8,0xb4,0xfe,0xfe,0xbc,0x8d,0xc7,0xda,0x0b,0xbe,0xdc,0x11,0x14,0xf2,0x28,0xaa,0x63,0xc3,0x7d,0x5c,0x30,0xe9,0x1a,0xb5,0x00,0xf3,0xea,0xdf,0xce,0xc5,};
static uint8_t MSG61[] = {0x6d,0xd6,0xef,0xd6,0xf6,0xca,0xa6,0x3b,0x72,0x9a,0xa8,0x18,0x6e,0x30,0x8b,0xc1,0xbd,0xa0,0x63,0x07,0xc0,0x5a,0x2c,0x0a,0xe5,0xa3,0x68,0x4e,0x6e,0x46,0x08,0x11,0x74,0x86,0x90,0xdc,0x2b,0x58,0x77,0x59,0x67,0xcf,0xcc,0x64,0x5f,0xd8,0x20,0x64,0xb1,0x27,0x9f,0xdc,0xa7,0x71,0x80,0x3d,0xb9,0xdc,0xa0,0xff,0x53,};
static uint8_t DIGEST61[] = {0xc4,0x64,0xa7,0xbf,0x6d,0x18,0x0d,0xe4,0xf7,0x44,0xbb,0x2f,0xe5,0xdc,0x27,0xa3,0xf6,0x81,0x33,0x4f,0xfd,0x54,0xa9,0x81,0x46,0x50,0xe6,0x02,0x60,0xa4,0x78,0xe3,};
static uint8_t MSG62[] = {0x65,0x11,0xa2,0x24,0x2d,0xdb,0x27,0x31,0x78,0xe1,0x9a,0x82,0xc5,0x7c,0x85,0xcb,0x05,0xa6,0x88,0x7f,0xf2,0x01,0x4c,0xf1,0xa3,0x1c,0xb9,0xba,0x5d,0xf1,0x69,0x5a,0xad,0xb2,0x5c,0x22,0xb3,0xc5,0xed,0x51,0xc1,0x0d,0x04,0x7d,0x25,0x6b,0x8e,0x34,0x42,0x84,0x2a,0xe4,0xe6,0xc5,0x25,0xf8,0xd7,0xa5,0xa9,0x44,0xaf,0x2a,};
static uint8_t DIGEST62[] = {0xd6,0x85,0x9c,0x0b,0x5a,0x0b,0x66,0x37,0x6a,0x24,0xf5,0x6b,0x2a,0xb1,0x04,0x28,0x6e,0xd0,0x07,0x86,0x34,0xba,0x19,0x11,0x2a,0xce,0x0d,0x6d,0x60,0xa9,0xc1,0xae,};
static uint8_t MSG63[] = {0xe2,0xf7,0x6e,0x97,0x60,0x6a,0x87,0x2e,0x31,0x74,0x39,0xf1,0xa0,0x3f,0xcd,0x92,0xe6,0x32,0xe5,0xbd,0x4e,0x7c,0xbc,0x4e,0x97,0xf1,0xaf,0xc1,0x9a,0x16,0xfd,0xe9,0x2d,0x77,0xcb,0xe5,0x46,0x41,0x6b,0x51,0x64,0x0c,0xdd,0xb9,0x2a,0xf9,0x96,0x53,0x4d,0xfd,0x81,0xed,0xb1,0x7c,0x44,0x24,0xcf,0x1a,0xc4,0xd7,0x5a,0xce,0xeb,};
static uint8_t DIGEST63[] = {0x18,0x04,0x1b,0xd4,0x66,0x50,0x83,0x00,0x1f,0xba,0x8c,0x54,0x11,0xd2,0xd7,0x48,0xe8,0xab,0xbf,0xdc,0xdf,0xd9,0x21,0x8c,0xb0,0x2b,0x68,0xa7,0x8e,0x7d,0x4c,0x23,};
static uint8_t MSG64[] = {0x5a,0x86,0xb7,0x37,0xea,0xea,0x8e,0xe9,0x76,0xa0,0xa2,0x4d,0xa6,0x3e,0x7e,0xd7,0xee,0xfa,0xd1,0x8a,0x10,0x1c,0x12,0x11,0xe2,0xb3,0x65,0x0c,0x51,0x87,0xc2,0xa8,0xa6,0x50,0x54,0x72,0x08,0x25,0x1f,0x6d,0x42,0x37,0xe6,0x61,0xc7,0xbf,0x4c,0x77,0xf3,0x35,0x39,0x03,0x94,0xc3,0x7f,0xa1,0xa9,0xf9,0xbe,0x83,0x6a,0xc2,0x85,0x09,};
static uint8_t DIGEST64[] = {0x42,0xe6,0x1e,0x17,0x4f,0xbb,0x38,0x97,0xd6,0xdd,0x6c,0xef,0x3d,0xd2,0x80,0x2f,0xe6,0x7b,0x33,0x19,0x53,0xb0,0x61,0x14,0xa6,0x5c,0x77,0x28,0x59,0xdf,0xc1,0xaa,};
TEST (TinyCrypT_SHA256, short_message_0)
{
uint8_t actual_digest[32];
tct_sha256(MSG0, sizeof(MSG0), actual_digest);
EXPECT_EQ(memcmp(DIGEST0, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_1)
{
uint8_t actual_digest[32];
tct_sha256(MSG1, sizeof(MSG1), actual_digest);
EXPECT_EQ(memcmp(DIGEST1, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_2)
{
uint8_t actual_digest[32];
tct_sha256(MSG2, sizeof(MSG2), actual_digest);
EXPECT_EQ(memcmp(DIGEST2, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_3)
{
uint8_t actual_digest[32];
tct_sha256(MSG3, sizeof(MSG3), actual_digest);
EXPECT_EQ(memcmp(DIGEST3, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_4)
{
uint8_t actual_digest[32];
tct_sha256(MSG4, sizeof(MSG4), actual_digest);
EXPECT_EQ(memcmp(DIGEST4, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_5)
{
uint8_t actual_digest[32];
tct_sha256(MSG5, sizeof(MSG5), actual_digest);
EXPECT_EQ(memcmp(DIGEST5, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_6)
{
uint8_t actual_digest[32];
tct_sha256(MSG6, sizeof(MSG6), actual_digest);
EXPECT_EQ(memcmp(DIGEST6, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_7)
{
uint8_t actual_digest[32];
tct_sha256(MSG7, sizeof(MSG7), actual_digest);
EXPECT_EQ(memcmp(DIGEST7, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_8)
{
uint8_t actual_digest[32];
tct_sha256(MSG8, sizeof(MSG8), actual_digest);
EXPECT_EQ(memcmp(DIGEST8, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_9)
{
uint8_t actual_digest[32];
tct_sha256(MSG9, sizeof(MSG9), actual_digest);
EXPECT_EQ(memcmp(DIGEST9, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_10)
{
uint8_t actual_digest[32];
tct_sha256(MSG10, sizeof(MSG10), actual_digest);
EXPECT_EQ(memcmp(DIGEST10, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_11)
{
uint8_t actual_digest[32];
tct_sha256(MSG11, sizeof(MSG11), actual_digest);
EXPECT_EQ(memcmp(DIGEST11, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_12)
{
uint8_t actual_digest[32];
tct_sha256(MSG12, sizeof(MSG12), actual_digest);
EXPECT_EQ(memcmp(DIGEST12, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_13)
{
uint8_t actual_digest[32];
tct_sha256(MSG13, sizeof(MSG13), actual_digest);
EXPECT_EQ(memcmp(DIGEST13, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_14)
{
uint8_t actual_digest[32];
tct_sha256(MSG14, sizeof(MSG14), actual_digest);
EXPECT_EQ(memcmp(DIGEST14, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_15)
{
uint8_t actual_digest[32];
tct_sha256(MSG15, sizeof(MSG15), actual_digest);
EXPECT_EQ(memcmp(DIGEST15, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_16)
{
uint8_t actual_digest[32];
tct_sha256(MSG16, sizeof(MSG16), actual_digest);
EXPECT_EQ(memcmp(DIGEST16, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_17)
{
uint8_t actual_digest[32];
tct_sha256(MSG17, sizeof(MSG17), actual_digest);
EXPECT_EQ(memcmp(DIGEST17, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_18)
{
uint8_t actual_digest[32];
tct_sha256(MSG18, sizeof(MSG18), actual_digest);
EXPECT_EQ(memcmp(DIGEST18, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_19)
{
uint8_t actual_digest[32];
tct_sha256(MSG19, sizeof(MSG19), actual_digest);
EXPECT_EQ(memcmp(DIGEST19, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_20)
{
uint8_t actual_digest[32];
tct_sha256(MSG20, sizeof(MSG20), actual_digest);
EXPECT_EQ(memcmp(DIGEST20, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_21)
{
uint8_t actual_digest[32];
tct_sha256(MSG21, sizeof(MSG21), actual_digest);
EXPECT_EQ(memcmp(DIGEST21, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_22)
{
uint8_t actual_digest[32];
tct_sha256(MSG22, sizeof(MSG22), actual_digest);
EXPECT_EQ(memcmp(DIGEST22, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_23)
{
uint8_t actual_digest[32];
tct_sha256(MSG23, sizeof(MSG23), actual_digest);
EXPECT_EQ(memcmp(DIGEST23, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_24)
{
uint8_t actual_digest[32];
tct_sha256(MSG24, sizeof(MSG24), actual_digest);
EXPECT_EQ(memcmp(DIGEST24, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_25)
{
uint8_t actual_digest[32];
tct_sha256(MSG25, sizeof(MSG25), actual_digest);
EXPECT_EQ(memcmp(DIGEST25, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_26)
{
uint8_t actual_digest[32];
tct_sha256(MSG26, sizeof(MSG26), actual_digest);
EXPECT_EQ(memcmp(DIGEST26, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_27)
{
uint8_t actual_digest[32];
tct_sha256(MSG27, sizeof(MSG27), actual_digest);
EXPECT_EQ(memcmp(DIGEST27, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_28)
{
uint8_t actual_digest[32];
tct_sha256(MSG28, sizeof(MSG28), actual_digest);
EXPECT_EQ(memcmp(DIGEST28, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_29)
{
uint8_t actual_digest[32];
tct_sha256(MSG29, sizeof(MSG29), actual_digest);
EXPECT_EQ(memcmp(DIGEST29, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_30)
{
uint8_t actual_digest[32];
tct_sha256(MSG30, sizeof(MSG30), actual_digest);
EXPECT_EQ(memcmp(DIGEST30, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_31)
{
uint8_t actual_digest[32];
tct_sha256(MSG31, sizeof(MSG31), actual_digest);
EXPECT_EQ(memcmp(DIGEST31, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_32)
{
uint8_t actual_digest[32];
tct_sha256(MSG32, sizeof(MSG32), actual_digest);
EXPECT_EQ(memcmp(DIGEST32, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_33)
{
uint8_t actual_digest[32];
tct_sha256(MSG33, sizeof(MSG33), actual_digest);
EXPECT_EQ(memcmp(DIGEST33, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_34)
{
uint8_t actual_digest[32];
tct_sha256(MSG34, sizeof(MSG34), actual_digest);
EXPECT_EQ(memcmp(DIGEST34, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_35)
{
uint8_t actual_digest[32];
tct_sha256(MSG35, sizeof(MSG35), actual_digest);
EXPECT_EQ(memcmp(DIGEST35, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_36)
{
uint8_t actual_digest[32];
tct_sha256(MSG36, sizeof(MSG36), actual_digest);
EXPECT_EQ(memcmp(DIGEST36, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_37)
{
uint8_t actual_digest[32];
tct_sha256(MSG37, sizeof(MSG37), actual_digest);
EXPECT_EQ(memcmp(DIGEST37, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_38)
{
uint8_t actual_digest[32];
tct_sha256(MSG38, sizeof(MSG38), actual_digest);
EXPECT_EQ(memcmp(DIGEST38, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_39)
{
uint8_t actual_digest[32];
tct_sha256(MSG39, sizeof(MSG39), actual_digest);
EXPECT_EQ(memcmp(DIGEST39, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_40)
{
uint8_t actual_digest[32];
tct_sha256(MSG40, sizeof(MSG40), actual_digest);
EXPECT_EQ(memcmp(DIGEST40, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_41)
{
uint8_t actual_digest[32];
tct_sha256(MSG41, sizeof(MSG41), actual_digest);
EXPECT_EQ(memcmp(DIGEST41, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_42)
{
uint8_t actual_digest[32];
tct_sha256(MSG42, sizeof(MSG42), actual_digest);
EXPECT_EQ(memcmp(DIGEST42, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_43)
{
uint8_t actual_digest[32];
tct_sha256(MSG43, sizeof(MSG43), actual_digest);
EXPECT_EQ(memcmp(DIGEST43, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_44)
{
uint8_t actual_digest[32];
tct_sha256(MSG44, sizeof(MSG44), actual_digest);
EXPECT_EQ(memcmp(DIGEST44, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_45)
{
uint8_t actual_digest[32];
tct_sha256(MSG45, sizeof(MSG45), actual_digest);
EXPECT_EQ(memcmp(DIGEST45, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_46)
{
uint8_t actual_digest[32];
tct_sha256(MSG46, sizeof(MSG46), actual_digest);
EXPECT_EQ(memcmp(DIGEST46, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_47)
{
uint8_t actual_digest[32];
tct_sha256(MSG47, sizeof(MSG47), actual_digest);
EXPECT_EQ(memcmp(DIGEST47, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_48)
{
uint8_t actual_digest[32];
tct_sha256(MSG48, sizeof(MSG48), actual_digest);
EXPECT_EQ(memcmp(DIGEST48, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_49)
{
uint8_t actual_digest[32];
tct_sha256(MSG49, sizeof(MSG49), actual_digest);
EXPECT_EQ(memcmp(DIGEST49, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_50)
{
uint8_t actual_digest[32];
tct_sha256(MSG50, sizeof(MSG50), actual_digest);
EXPECT_EQ(memcmp(DIGEST50, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_51)
{
uint8_t actual_digest[32];
tct_sha256(MSG51, sizeof(MSG51), actual_digest);
EXPECT_EQ(memcmp(DIGEST51, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_52)
{
uint8_t actual_digest[32];
tct_sha256(MSG52, sizeof(MSG52), actual_digest);
EXPECT_EQ(memcmp(DIGEST52, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_53)
{
uint8_t actual_digest[32];
tct_sha256(MSG53, sizeof(MSG53), actual_digest);
EXPECT_EQ(memcmp(DIGEST53, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_54)
{
uint8_t actual_digest[32];
tct_sha256(MSG54, sizeof(MSG54), actual_digest);
EXPECT_EQ(memcmp(DIGEST54, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_55)
{
uint8_t actual_digest[32];
tct_sha256(MSG55, sizeof(MSG55), actual_digest);
EXPECT_EQ(memcmp(DIGEST55, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_56)
{
uint8_t actual_digest[32];
tct_sha256(MSG56, sizeof(MSG56), actual_digest);
EXPECT_EQ(memcmp(DIGEST56, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_57)
{
uint8_t actual_digest[32];
tct_sha256(MSG57, sizeof(MSG57), actual_digest);
EXPECT_EQ(memcmp(DIGEST57, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_58)
{
uint8_t actual_digest[32];
tct_sha256(MSG58, sizeof(MSG58), actual_digest);
EXPECT_EQ(memcmp(DIGEST58, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_59)
{
uint8_t actual_digest[32];
tct_sha256(MSG59, sizeof(MSG59), actual_digest);
EXPECT_EQ(memcmp(DIGEST59, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_60)
{
uint8_t actual_digest[32];
tct_sha256(MSG60, sizeof(MSG60), actual_digest);
EXPECT_EQ(memcmp(DIGEST60, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_61)
{
uint8_t actual_digest[32];
tct_sha256(MSG61, sizeof(MSG61), actual_digest);
EXPECT_EQ(memcmp(DIGEST61, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_62)
{
uint8_t actual_digest[32];
tct_sha256(MSG62, sizeof(MSG62), actual_digest);
EXPECT_EQ(memcmp(DIGEST62, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_63)
{
uint8_t actual_digest[32];
tct_sha256(MSG63, sizeof(MSG63), actual_digest);
EXPECT_EQ(memcmp(DIGEST63, actual_digest, 32), 0);
}
TEST (TinyCrypT_SHA256, short_message_64)
{
uint8_t actual_digest[32];
tct_sha256(MSG64, sizeof(MSG64), actual_digest);
EXPECT_EQ(memcmp(DIGEST64, actual_digest, 32), 0);
}