]> eyrie.org Git - kerberos/krb5-strength.git/blob - tests/data/passwords/tests.h
Declare fast forward from 3.1-2
[kerberos/krb5-strength.git] / tests / data / passwords / tests.h
1 /*
2  * Type definition for password test data.
3  *
4  * This header provides the struct definition for password test data written
5  * out by make-c-data.  It's included by the test data files.
6  *
7  * Written by Russ Allbery <eagle@eyrie.org>
8  * Copyright 2020 Russ Allbery <eagle@eyrie.org>
9  * Copyright 2013
10  *     The Board of Trustees of the Leland Stanford Junior University
11  *
12  * SPDX-License-Identifier: MIT
13  */
14
15 #ifndef TESTS_DATA_PASSWORD_TESTS_H
16 #define TESTS_DATA_PASSWORD_TESTS_H 1
17
18 #include <config.h>
19 #include <portable/kadmin.h>
20 #include <portable/krb5.h>
21 #include <portable/stdbool.h>
22
23 struct password_test {
24     const char *name;
25     const char *principal;
26     const char *password;
27     krb5_error_code code;
28     const char *error;
29     bool skip_for_system_cracklib;
30 };
31
32 #endif /* !TESTS_DATA_PASSWORD_TESTS_H */