blob: 65de7a3a46e2d5ccabffc20c8061756d9fcacf6c [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 _UTCTime_H_
6#define _UTCTime_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 UTCTime_t; /* Implemented via OCTET STRING */
Lev Walkinf15320b2004-06-03 03:38:44 +000011
12extern asn1_TYPE_descriptor_t asn1_DEF_UTCTime;
13
Lev Walkinf15320b2004-06-03 03:38:44 +000014asn_struct_print_f UTCTime_print;
Lev Walkina9cc46e2004-09-22 16:06:28 +000015asn_constr_check_f UTCTime_constraint;
16xer_type_encoder_f UTCTime_encode_xer;
Lev Walkinf15320b2004-06-03 03:38:44 +000017
18/***********************
19 * Some handy helpers. *
20 ***********************/
21
Lev Walkinf15320b2004-06-03 03:38:44 +000022struct tm; /* <time.h> */
Lev Walkin0aca3852004-08-07 03:51:43 +000023
24/* See asn_GT2time() in GeneralizedTime.h */
25time_t asn_UT2time(const UTCTime_t *, struct tm *_optional_tm4fill, int as_gmt);
26
27/* See asn_time2GT() in GeneralizedTime.h */
28UTCTime_t *asn_time2UT(UTCTime_t *__opt_ut, const struct tm *, int force_gmt);
Lev Walkinf15320b2004-06-03 03:38:44 +000029
30#endif /* _UTCTime_H_ */