Sha256: 945b234f2899b1ceb09603edbc8a65f95c20cc8dad913ef5a0c26170db4d38a3

Contents?: true

Size: 1.94 KB

Versions: 19

Compression:

Stored size: 1.94 KB

Contents

/*
 * '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(const ASN1_TIME *);
/* 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 *);

/*
 * ASN1_STRING conversions
 */
VALUE asn1str_to_str(const ASN1_STRING *);

/*
 * ASN1_INTEGER conversions
 */
VALUE asn1integer_to_num(const 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

Version data entries

19 entries across 19 versions & 3 rubygems

Version Path
openssl-3.2.0 ext/openssl/ossl_asn1.h
zig_example-0.3.2 ext/openssl/ossl_asn1.h
zig_example-0.3.1 ext/openssl/ossl_asn1.h
openssl-3.1.0 ext/openssl/ossl_asn1.h
openssl-3.0.2 ext/openssl/ossl_asn1.h
openssl-2.2.3 ext/openssl/ossl_asn1.h
openssl-custom-2.2.2 ext/openssl/ossl_asn1.h
openssl-3.0.1 ext/openssl/ossl_asn1.h
openssl-2.2.2 ext/openssl/ossl_asn1.h
openssl-2.1.4 ext/openssl/ossl_asn1.h
openssl-3.0.0 ext/openssl/ossl_asn1.h
openssl-2.2.1 ext/openssl/ossl_asn1.h
openssl-2.1.3 ext/openssl/ossl_asn1.h
openssl-2.2.0 ext/openssl/ossl_asn1.h
openssl-2.1.2 ext/openssl/ossl_asn1.h
openssl-2.1.1 ext/openssl/ossl_asn1.h
openssl-2.1.0 ext/openssl/ossl_asn1.h
openssl-2.1.0.beta2 ext/openssl/ossl_asn1.h
openssl-2.1.0.beta1 ext/openssl/ossl_asn1.h