2003-09-12 09:46:48 -04:00
|
|
|
/*
|
|
|
|
* 'OpenSSL for Ruby' team members
|
|
|
|
* Copyright (C) 2003
|
|
|
|
* All rights reserved.
|
|
|
|
*/
|
|
|
|
/*
|
2015-04-19 23:55:09 -04:00
|
|
|
* This program is licensed under the same licence as Ruby.
|
2003-09-12 09:46:48 -04:00
|
|
|
* (See the file 'LICENCE'.)
|
|
|
|
*/
|
|
|
|
#include "ossl.h"
|
|
|
|
|
|
|
|
BIO *
|
2017-08-10 05:23:45 -04:00
|
|
|
ossl_obj2bio(volatile VALUE *pobj)
|
2003-09-12 09:46:48 -04:00
|
|
|
{
|
2017-08-10 05:23:45 -04:00
|
|
|
VALUE obj = *pobj;
|
2003-09-12 09:46:48 -04:00
|
|
|
BIO *bio;
|
|
|
|
|
2017-08-10 05:23:45 -04:00
|
|
|
if (RB_TYPE_P(obj, T_FILE))
|
|
|
|
obj = rb_funcallv(obj, rb_intern("read"), 0, NULL);
|
|
|
|
StringValue(obj);
|
|
|
|
bio = BIO_new_mem_buf(RSTRING_PTR(obj), RSTRING_LENINT(obj));
|
|
|
|
if (!bio)
|
|
|
|
ossl_raise(eOSSLError, "BIO_new_mem_buf");
|
|
|
|
*pobj = obj;
|
2003-09-12 09:46:48 -04:00
|
|
|
return bio;
|
|
|
|
}
|
|
|
|
|
2003-09-17 05:05:02 -04:00
|
|
|
VALUE
|
|
|
|
ossl_membio2str0(BIO *bio)
|
2003-09-12 09:46:48 -04:00
|
|
|
{
|
|
|
|
VALUE ret;
|
|
|
|
BUF_MEM *buf;
|
|
|
|
|
|
|
|
BIO_get_mem_ptr(bio, &buf);
|
|
|
|
ret = rb_str_new(buf->data, buf->length);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
VALUE
|
|
|
|
ossl_protect_membio2str(BIO *bio, int *status)
|
|
|
|
{
|
2016-08-29 01:47:09 -04:00
|
|
|
return rb_protect((VALUE (*)(VALUE))ossl_membio2str0, (VALUE)bio, status);
|
2003-09-12 09:46:48 -04:00
|
|
|
}
|
|
|
|
|
2010-04-22 04:04:13 -04:00
|
|
|
VALUE
|
2003-09-17 05:05:02 -04:00
|
|
|
ossl_membio2str(BIO *bio)
|
|
|
|
{
|
|
|
|
VALUE ret;
|
|
|
|
int status = 0;
|
|
|
|
|
|
|
|
ret = ossl_protect_membio2str(bio, &status);
|
|
|
|
BIO_free(bio);
|
|
|
|
if(status) rb_jump_tag(status);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|