blob: a7a8a4a2de2e2167060113e9ba1c78950c748b60 [file] [log] [blame]
vlmfa67ddc2004-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
8#include <constr_TYPE.h>
9#include <OCTET_STRING.h>
10
11typedef OCTET_STRING_t GeneralizedTime_t; /* Implemented using OCTET STRING */
12
13extern asn1_TYPE_descriptor_t asn1_DEF_GeneralizedTime;
14
15asn_constr_check_f GeneralizedTime_constraint;
vlm81057a82004-08-07 03:52:26 +000016der_type_encoder_f GeneralizedTime_encode_der;
vlmfa67ddc2004-06-03 03:38:44 +000017asn_struct_print_f GeneralizedTime_print;
18
19/***********************
20 * Some handy helpers. *
21 ***********************/
22
vlmfa67ddc2004-06-03 03:38:44 +000023struct tm; /* <time.h> */
vlm81057a82004-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
39 * into a GMT time zone (encoding ends with 'Z').
40 * 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);
vlmfa67ddc2004-06-03 03:38:44 +000044
45#endif /* _GeneralizedTime_H_ */