mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
9eca2ced64
r55219 didn't fix the entire issue. It only fixed the issue on environment with sizeof(time_t) == 8 && sizeof(long) == 4. * ext/openssl/extconf.rb: Check existence of ASN1_TIME_adj(). The old ASN1_TIME_set() is not Year 2038 ready on sizeof(time_t) == 4 environment. This function was added in OpenSSL 1.0.0. [ruby-core:45552] [Bug #6571] * ext/openssl/ossl_asn1.c (ossl_time_split): Added. Split the argument (Time) into the number of days elapsed since the epoch and the remainder seconds to conform to ASN1_TIME_adj(). (obj_to_asn1utime, obj_to_asn1gtime): Use ossl_time_split() and ASN1_*TIME_adj(). * ext/openssl/ossl_asn1.h: Add the function prototype for ossl_time_split(). * ext/openssl/ossl_x509.[ch]: Add ossl_x509_time_adjust(). Similarly to obj_to_asn1*time(), use X509_time_adj_ex() instead of X509_time_adj(). * ext/openssl/ossl_x509cert.c, ext/openssl/ossl_x509crl.c, ext/openssl/ossl_x509revoked.c: Use ossl_x509_time_adjust(). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55249 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
66 lines
2 KiB
C
66 lines
2 KiB
C
/*
|
|
* 'OpenSSL for Ruby' team members
|
|
* Copyright (C) 2003
|
|
* All rights reserved.
|
|
*/
|
|
/*
|
|
* This program is licensed under the same licence as Ruby.
|
|
* (See the file 'LICENCE'.)
|
|
*/
|
|
#if !defined(_OSSL_ASN1_H_)
|
|
#define _OSSL_ASN1_H_
|
|
|
|
/*
|
|
* ASN1_DATE conversions
|
|
*/
|
|
VALUE asn1time_to_time(ASN1_TIME *);
|
|
#if defined(HAVE_ASN1_TIME_ADJ)
|
|
/* Splits VALUE to seconds and offset days. VALUE is typically a Time or an
|
|
* Integer. This is used when updating ASN1_*TIME with ASN1_TIME_adj() or
|
|
* X509_time_adj_ex(). We can't use ASN1_TIME_set() and X509_time_adj() because
|
|
* they have the Year 2038 issue on sizeof(time_t) == 4 environment */
|
|
void ossl_time_split(VALUE, time_t *, int *);
|
|
#else
|
|
time_t time_to_time_t(VALUE);
|
|
#endif
|
|
|
|
/*
|
|
* ASN1_STRING conversions
|
|
*/
|
|
VALUE asn1str_to_str(ASN1_STRING *);
|
|
|
|
/*
|
|
* ASN1_INTEGER conversions
|
|
*/
|
|
VALUE asn1integer_to_num(ASN1_INTEGER *);
|
|
ASN1_INTEGER *num_to_asn1integer(VALUE, ASN1_INTEGER *);
|
|
|
|
/*
|
|
* ASN1 module
|
|
*/
|
|
extern VALUE mASN1;
|
|
extern VALUE eASN1Error;
|
|
|
|
extern VALUE cASN1Data;
|
|
extern VALUE cASN1Primitive;
|
|
extern VALUE cASN1Constructive;
|
|
|
|
extern VALUE cASN1Boolean; /* BOOLEAN */
|
|
extern VALUE cASN1Integer, cASN1Enumerated; /* INTEGER */
|
|
extern VALUE cASN1BitString; /* BIT STRING */
|
|
extern VALUE cASN1OctetString, cASN1UTF8String; /* STRINGs */
|
|
extern VALUE cASN1NumericString, cASN1PrintableString;
|
|
extern VALUE cASN1T61String, cASN1VideotexString;
|
|
extern VALUE cASN1IA5String, cASN1GraphicString;
|
|
extern VALUE cASN1ISO64String, cASN1GeneralString;
|
|
extern VALUE cASN1UniversalString, cASN1BMPString;
|
|
extern VALUE cASN1Null; /* NULL */
|
|
extern VALUE cASN1ObjectId; /* OBJECT IDENTIFIER */
|
|
extern VALUE cASN1UTCTime, cASN1GeneralizedTime; /* TIME */
|
|
extern VALUE cASN1Sequence, cASN1Set; /* CONSTRUCTIVE */
|
|
|
|
ASN1_TYPE *ossl_asn1_get_asn1type(VALUE);
|
|
|
|
void Init_ossl_asn1(void);
|
|
|
|
#endif
|