Blame fuzz/psk.h

Packit Service 4684c1
/*
Packit Service 4684c1
 * Copyright (C) 2017 Nikos Mavrogiannopoulos
Packit Service 4684c1
 *
Packit Service 4684c1
 * Permission is hereby granted, free of charge, to any person obtaining a
Packit Service 4684c1
 * copy of this software and associated documentation files (the "Software"),
Packit Service 4684c1
 * to deal in the Software without restriction, including without limitation
Packit Service 4684c1
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
Packit Service 4684c1
 * and/or sell copies of the Software, and to permit persons to whom the
Packit Service 4684c1
 * Software is furnished to do so, subject to the following conditions:
Packit Service 4684c1
 *
Packit Service 4684c1
 * The above copyright notice and this permission notice shall be included in
Packit Service 4684c1
 * all copies or substantial portions of the Software.
Packit Service 4684c1
 *
Packit Service 4684c1
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
Packit Service 4684c1
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
Packit Service 4684c1
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
Packit Service 4684c1
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
Packit Service 4684c1
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
Packit Service 4684c1
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
Packit Service 4684c1
 * DEALINGS IN THE SOFTWARE.
Packit Service 4684c1
 *
Packit Service 4684c1
 */
Packit Service 4684c1
Packit Service 4684c1
#ifndef PSK_H
Packit Service 4684c1
# define PSK_H
Packit Service 4684c1
Packit Service 4684c1
static const uint8_t psk_key16[] = {
Packit Service 4684c1
	0x8a, 0x77, 0x59, 0xb3, 0xf2, 0x69, 0x83, 0xc4,
Packit Service 4684c1
	0x53, 0xe4, 0x48, 0x06, 0x0b, 0xde, 0x89, 0x81
Packit Service 4684c1
};
Packit Service 4684c1
Packit Service 4684c1
#endif