Ruby
2.0.0p247(2013-06-27revision41674)
|
00001 /* 00002 * $Id: ossl_bio.h 25189 2009-10-02 12:04:37Z akr $ 00003 * 'OpenSSL for Ruby' team members 00004 * Copyright (C) 2003 00005 * All rights reserved. 00006 */ 00007 /* 00008 * This program is licenced under the same licence as Ruby. 00009 * (See the file 'LICENCE'.) 00010 */ 00011 #if !defined(_OSSL_BIO_H_) 00012 #define _OSSL_BIO_H_ 00013 00014 BIO *ossl_obj2bio(VALUE); 00015 BIO *ossl_protect_obj2bio(VALUE,int*); 00016 VALUE ossl_membio2str0(BIO*); 00017 VALUE ossl_membio2str(BIO*); 00018 VALUE ossl_protect_membio2str(BIO*,int*); 00019 00020 #endif 00021 00022