]> eyrie.org Git - kerberos/krb5-strength.git/blob - tests/data/passwords/tests.h
Change my email address to eagle@eyrie.org
[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 2013
9  *     The Board of Trustees of the Leland Stanford Junior University
10  *
11  * See LICENSE for licensing terms.
12  */
13
14 #ifndef TESTS_DATA_PASSWORD_TESTS_H
15 #define TESTS_DATA_PASSWORD_TESTS_H 1
16
17 #include <config.h>
18 #include <portable/kadmin.h>
19 #include <portable/krb5.h>
20
21 struct password_test {
22     const char *name;
23     const char *principal;
24     const char *password;
25     krb5_error_code code;
26     const char *error;
27 };
28
29 #endif /* !TESTS_DATA_PASSWORD_TESTS_H */