2003-07-23 20:12:24 +04:00
|
|
|
/*
|
|
|
|
* 'OpenSSL for Ruby' project
|
|
|
|
* Copyright (C) 2001-2002 Michal Rokos <m.rokos@sh.cvut.cz>
|
|
|
|
* All rights reserved.
|
|
|
|
*/
|
|
|
|
/*
|
2015-04-20 06:55:09 +03:00
|
|
|
* This program is licensed under the same licence as Ruby.
|
2003-07-23 20:12:24 +04:00
|
|
|
* (See the file 'LICENCE'.)
|
|
|
|
*/
|
|
|
|
#if !defined(_OSSL_X509_H_)
|
|
|
|
#define _OSSL_X509_H_
|
|
|
|
|
|
|
|
/*
|
|
|
|
* X509 main module
|
|
|
|
*/
|
|
|
|
extern VALUE mX509;
|
|
|
|
|
2016-06-01 15:41:15 +03:00
|
|
|
/*
|
|
|
|
* Converts the VALUE into Integer and set it to the ASN1_TIME. This is a
|
|
|
|
* wrapper for X509_time_adj_ex() so passing NULL creates a new ASN1_TIME.
|
|
|
|
* Note that the caller must check the NULL return.
|
|
|
|
*/
|
|
|
|
ASN1_TIME *ossl_x509_time_adjust(ASN1_TIME *, VALUE);
|
|
|
|
|
2003-07-23 20:12:24 +04:00
|
|
|
void Init_ossl_x509(void);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* X509Attr
|
|
|
|
*/
|
|
|
|
extern VALUE cX509Attr;
|
|
|
|
extern VALUE eX509AttrError;
|
|
|
|
|
|
|
|
VALUE ossl_x509attr_new(X509_ATTRIBUTE *);
|
2016-08-29 08:47:09 +03:00
|
|
|
X509_ATTRIBUTE *GetX509AttrPtr(VALUE);
|
2003-07-23 20:12:24 +04:00
|
|
|
void Init_ossl_x509attr(void);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* X509Cert
|
|
|
|
*/
|
|
|
|
extern VALUE cX509Cert;
|
|
|
|
extern VALUE eX509CertError;
|
|
|
|
|
|
|
|
VALUE ossl_x509_new(X509 *);
|
|
|
|
VALUE ossl_x509_new_from_file(VALUE);
|
|
|
|
X509 *GetX509CertPtr(VALUE);
|
|
|
|
X509 *DupX509CertPtr(VALUE);
|
|
|
|
void Init_ossl_x509cert(void);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* X509CRL
|
|
|
|
*/
|
|
|
|
extern VALUE cX509CRL;
|
|
|
|
extern VALUE eX509CRLError;
|
|
|
|
|
|
|
|
VALUE ossl_x509crl_new(X509_CRL *);
|
|
|
|
X509_CRL *GetX509CRLPtr(VALUE);
|
|
|
|
X509_CRL *DupX509CRLPtr(VALUE);
|
|
|
|
void Init_ossl_x509crl(void);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* X509Extension
|
|
|
|
*/
|
|
|
|
extern VALUE cX509Ext;
|
|
|
|
extern VALUE cX509ExtFactory;
|
|
|
|
extern VALUE eX509ExtError;
|
|
|
|
|
|
|
|
VALUE ossl_x509ext_new(X509_EXTENSION *);
|
|
|
|
X509_EXTENSION *GetX509ExtPtr(VALUE);
|
|
|
|
void Init_ossl_x509ext(void);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* X509Name
|
|
|
|
*/
|
|
|
|
extern VALUE cX509Name;
|
|
|
|
extern VALUE eX509NameError;
|
|
|
|
|
|
|
|
VALUE ossl_x509name_new(X509_NAME *);
|
|
|
|
X509_NAME *GetX509NamePtr(VALUE);
|
|
|
|
void Init_ossl_x509name(void);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* X509Request
|
|
|
|
*/
|
|
|
|
extern VALUE cX509Req;
|
|
|
|
extern VALUE eX509ReqError;
|
|
|
|
|
|
|
|
VALUE ossl_x509req_new(X509_REQ *);
|
2003-11-01 12:24:55 +03:00
|
|
|
X509_REQ *GetX509ReqPtr(VALUE);
|
2003-07-23 20:12:24 +04:00
|
|
|
X509_REQ *DupX509ReqPtr(VALUE);
|
|
|
|
void Init_ossl_x509req(void);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* X509Revoked
|
|
|
|
*/
|
|
|
|
extern VALUE cX509Rev;
|
|
|
|
extern VALUE eX509RevError;
|
|
|
|
|
|
|
|
VALUE ossl_x509revoked_new(X509_REVOKED *);
|
|
|
|
X509_REVOKED *DupX509RevokedPtr(VALUE);
|
|
|
|
void Init_ossl_x509revoked(void);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* X509Store and X509StoreContext
|
|
|
|
*/
|
|
|
|
extern VALUE cX509Store;
|
|
|
|
extern VALUE cX509StoreContext;
|
|
|
|
extern VALUE eX509StoreError;
|
|
|
|
|
|
|
|
VALUE ossl_x509store_new(X509_STORE *);
|
|
|
|
X509_STORE *GetX509StorePtr(VALUE);
|
|
|
|
X509_STORE *DupX509StorePtr(VALUE);
|
|
|
|
|
|
|
|
VALUE ossl_x509stctx_new(X509_STORE_CTX *);
|
|
|
|
VALUE ossl_x509stctx_clear_ptr(VALUE);
|
|
|
|
X509_STORE_CTX *GetX509StCtxtPtr(VALUE);
|
|
|
|
|
|
|
|
void Init_ossl_x509store(void);
|
|
|
|
|
|
|
|
#endif /* _OSSL_X509_H_ */
|