blob: 90f7e0893e9bedec286b152907dfd4efa13cbab1 [file] [log] [blame]
Lev Walkinf15320b2004-06-03 03:38:44 +00001/*-
2 * Copyright (c) 2003, 2004 Lev Walkin <vlm@lionet.info>. All rights reserved.
3 * Redistribution and modifications are permitted subject to BSD license.
4 */
5#ifndef _GeneralizedTime_H_
6#define _GeneralizedTime_H_
7
Lev Walkinf15320b2004-06-03 03:38:44 +00008#include <OCTET_STRING.h>
9
Lev Walkin11c3e172004-09-24 21:00:50 +000010typedef OCTET_STRING_t GeneralizedTime_t; /* Implemented via OCTET STRING */
Lev Walkinf15320b2004-06-03 03:38:44 +000011
Lev Walkin5e033762004-09-29 13:26:15 +000012extern asn_TYPE_descriptor_t asn_DEF_GeneralizedTime;
Lev Walkinf15320b2004-06-03 03:38:44 +000013
Lev Walkina9cc46e2004-09-22 16:06:28 +000014asn_struct_print_f GeneralizedTime_print;
Lev Walkinf15320b2004-06-03 03:38:44 +000015asn_constr_check_f GeneralizedTime_constraint;
Lev Walkin99006362004-08-07 03:52:26 +000016der_type_encoder_f GeneralizedTime_encode_der;
Lev Walkina9cc46e2004-09-22 16:06:28 +000017xer_type_encoder_f GeneralizedTime_encode_xer;
Lev Walkinf15320b2004-06-03 03:38:44 +000018
19/***********************
20 * Some handy helpers. *
21 ***********************/
22
Lev Walkinf15320b2004-06-03 03:38:44 +000023struct tm; /* <time.h> */
Lev Walkin99006362004-08-07 03:52:26 +000024
25/*
26 * Convert a GeneralizedTime structure into time_t
27 * and optionally into struct tm.
28 * If as_gmt is given, the resulting _optional_tm4fill will have a GMT zone,
29 * instead of default local one.
30 * On error returns -1 and errno set to EINVAL
31 */
32time_t asn_GT2time(const GeneralizedTime_t *, struct tm *_optional_tm4fill,
33 int as_gmt);
34
Lev Walkin535612a2005-07-03 05:32:40 +000035/* A version of the above function also returning the fractions of seconds */
36time_t asn_GT2time_frac(const GeneralizedTime_t *,
37 long *frac_value, long *frac_base, /* (value/base) */
38 struct tm *_optional_tm4fill, int as_gmt);
39
Lev Walkin99006362004-08-07 03:52:26 +000040/*
41 * Convert a struct tm into GeneralizedTime.
Lev Walkin535612a2005-07-03 05:32:40 +000042 * If _optional_gt is not given, this function will try to allocate one.
Lev Walkin99006362004-08-07 03:52:26 +000043 * If force_gmt is given, the resulting GeneralizedTime will be forced
Lev Walkin5e033762004-09-29 13:26:15 +000044 * into a GMT time zone (encoding ends with a "Z").
Lev Walkin99006362004-08-07 03:52:26 +000045 * On error, this function returns 0 and sets errno.
46 */
Lev Walkin535612a2005-07-03 05:32:40 +000047GeneralizedTime_t *asn_time2GT(GeneralizedTime_t *_optional_gt,
48 const struct tm *, int force_gmt);
49GeneralizedTime_t *asn_time2GT_frac(GeneralizedTime_t *_optional_gt,
50 const struct tm *, long frac_value, long frac_base, int force_gmt);
Lev Walkinf15320b2004-06-03 03:38:44 +000051
52#endif /* _GeneralizedTime_H_ */