mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
bd96b4c8cc
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4552 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
27 lines
486 B
C
27 lines
486 B
C
/*
|
|
* $Id$
|
|
* 'OpenSSL for Ruby' team members
|
|
* Copyright (C) 2003
|
|
* All rights reserved.
|
|
*/
|
|
/*
|
|
* This program is licenced 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 *);
|
|
time_t time_to_time_t(VALUE);
|
|
|
|
/*
|
|
* ASN1_INTEGER conversions
|
|
*/
|
|
VALUE asn1integer_to_num(ASN1_INTEGER *);
|
|
ASN1_INTEGER *num_to_asn1integer(VALUE, ASN1_INTEGER *);
|
|
|
|
#endif
|
|
|