blob: d00dafb510f6559e1ae0a420a550841ec3c2fa2e [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
8#include <constr_TYPE.h>
9#include <OCTET_STRING.h>
10
11typedef OCTET_STRING_t UTCTime_t; /* Implemented using OCTET STRING */
12
13extern asn1_TYPE_descriptor_t asn1_DEF_UTCTime;
14
15asn_constr_check_f UTCTime_constraint;
16asn_struct_print_f UTCTime_print;
17
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_ */