blob: 21a680cbf084d230336eeb00fe0d00618e01bc76 [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
35/*
36 * Convert a struct tm into GeneralizedTime.
37 * If __opt_gt is not given, this function will try to allocate one.
38 * If force_gmt is given, the resulting GeneralizedTime will be forced
Lev Walkin5e033762004-09-29 13:26:15 +000039 * into a GMT time zone (encoding ends with a "Z").
Lev Walkin99006362004-08-07 03:52:26 +000040 * On error, this function returns 0 and sets errno.
41 */
42GeneralizedTime_t *asn_time2GT(GeneralizedTime_t *__opt_gt, const struct tm *,
43 int force_gmt);
Lev Walkinf15320b2004-06-03 03:38:44 +000044
45#endif /* _GeneralizedTime_H_ */