Blame fuzz/srp.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 SRP_H
Packit Service 4684c1
# define SRP_H
Packit Service 4684c1
Packit Service 4684c1
#define USERNAME "test"
Packit Service 4684c1
#define PASSWORD "test"
Packit Service 4684c1
Packit Service 4684c1
#define SALT "\xeb\x0e\x6a\x5c\x02\x0d\x4b\xa9\x97\xb6\xbe\x73\x4a\x71\xc5\x00"
Packit Service 4684c1
#define SALT_SIZE 16
Packit Service 4684c1
Packit Service 4684c1
#endif