]> git.saurik.com Git - apple/security.git/blob - CdsaUtils/cuTimeStr.h
Security-176.tar.gz
[apple/security.git] / CdsaUtils / cuTimeStr.h
1 /*
2 * Copyright (c) 2002 Apple Computer, Inc. All Rights Reserved.
3 *
4 * The contents of this file constitute Original Code as defined in and are
5 * subject to the Apple Public Source License Version 1.2 (the 'License').
6 * You may not use this file except in compliance with the License.
7 * Please obtain a copy of the License at http://www.apple.com/publicsource
8 * and read it before using this file.
9 *
10 * This Original Code and all software distributed under the License are
11 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
12 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
13 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
14 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
15 * Please see the License for the specific language governing rights
16 * and limitations under the License.
17 */
18
19 /*
20 * cuTimeStr.h = Time string utilities.
21 */
22
23 #ifndef _TIME_STR_H_
24 #define _TIME_STR_H_
25
26 #include <time.h>
27 #include <Security/x509defs.h>
28
29 #define UTC_TIME_STRLEN 13
30 #define CSSM_TIME_STRLEN 14 /* no trailing 'Z' */
31 #define GENERALIZED_TIME_STRLEN 15
32
33 #ifdef __cplusplus
34 extern "C" {
35 #endif
36
37 /*
38 * Given a string containing either a UTC-style or "generalized time"
39 * time string, convert to a struct tm (in GMT/UTC). Returns nonzero on
40 * error.
41 */
42 int cuTimeStringToTm(
43 const char *str,
44 unsigned len,
45 struct tm *tmp);
46
47 typedef enum {
48 TIME_UTC,
49 TIME_CSSM,
50 TIME_GEN
51 } timeSpec;
52
53 /*
54 * Return an APP_MALLOCd time string, specified format and time relative
55 * to 'now' in seconds.
56 */
57 char *cuTimeAtNowPlus(
58 int secFromNow,
59 timeSpec spec);
60
61 /*
62 * Convert a CSSM_X509_TIME, which can be in any of three forms (UTC,
63 * generalized, or CSSM_TIMESTRING) into a CSSM_TIMESTRING. Caller
64 * must free() the result. Returns NULL if x509time is badly formed.
65 */
66 char *cuX509TimeToCssmTimestring(
67 const CSSM_X509_TIME *x509Time,
68 unsigned *rtnLen); // for caller's convenience
69
70 #ifdef __cplusplus
71 }
72 #endif
73
74 #endif /* _TIME_STR_H_ */