54be59f8f57cef3ba60575e5c60fdfa7d06a3678
2 * Copyright (C) 2009 Martin Willi
3 * Hochschule fuer Technik Rapperswil
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
29 #include <selectors/traffic_selector.h>
30 #include <credentials/keys/private_key.h>
33 * Convert a form string to a encoding type
35 bool get_form(char *form
, cred_encoding_type_t
*enc
, credential_type_t type
);
38 * Calculate start/end lifetime for certificates.
40 * If both nbstr and nastr are given, span is ignored. Otherwise missing
41 * arguments are calculated, or assumed to be now.
43 * @param format strptime() format, NULL for default: %d.%m.%y %T
44 * @param nbstr string describing notBefore datetime, or NULL
45 * @param nastr string describing notAfter datetime, or NULL
46 * @param span lifetime span, from notBefore to notAfter
47 * @param nb calculated notBefore time
48 * @param na calculated notAfter time
49 * @return TRUE of nb/na calculated successfully
51 bool calculate_lifetime(char *format
, char *nbstr
, char *nastr
, time_t span
,
52 time_t *nb
, time_t *na
);
55 * Set output file mode appropriate for credential encoding form on Windows
57 void set_file_mode(FILE *stream
, cred_encoding_type_t enc
);
60 * Select default digest for signatures with the given key
62 * @param private private key
63 * @return hash algorithm
65 hash_algorithm_t
get_default_digest(private_key_t
*private);
68 * Create a traffic selector from a CIDR or range string.
70 * @param str input string, either a.b.c.d/e or a.b.c.d-e.f.g.h
71 * @return traffic selector, NULL on error
73 traffic_selector_t
* parse_ts(char *str
);
75 #endif /** PKI_H_ @}*/