2019-11-18 01:32:22 +01:00
|
|
|
/*
|
|
|
|
* Copyright 2019 The OpenSSL Project Authors. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
|
|
|
* this file except in compliance with the License. You can obtain a copy
|
|
|
|
* in the file LICENSE in the source distribution or at
|
|
|
|
* https://www.openssl.org/source/license.html
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <openssl/bio.h>
|
2020-08-16 21:25:08 +02:00
|
|
|
#include <openssl/encoder.h>
|
|
|
|
#include "encoder_local.h"
|
2019-11-18 01:32:22 +01:00
|
|
|
|
2020-08-16 21:25:08 +02:00
|
|
|
int OSSL_ENCODER_to_bio(OSSL_ENCODER_CTX *ctx, BIO *out)
|
2019-11-18 01:32:22 +01:00
|
|
|
{
|
|
|
|
return ctx->do_output(ctx, out);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef OPENSSL_NO_STDIO
|
|
|
|
static BIO *bio_from_file(FILE *fp)
|
|
|
|
{
|
|
|
|
BIO *b;
|
|
|
|
|
|
|
|
if ((b = BIO_new(BIO_s_file())) == NULL) {
|
2020-08-16 21:25:08 +02:00
|
|
|
ERR_raise(ERR_LIB_OSSL_ENCODER, ERR_R_BUF_LIB);
|
2019-11-18 01:32:22 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
BIO_set_fp(b, fp, BIO_NOCLOSE);
|
|
|
|
return b;
|
|
|
|
}
|
|
|
|
|
2020-08-16 21:25:08 +02:00
|
|
|
int OSSL_ENCODER_to_fp(OSSL_ENCODER_CTX *ctx, FILE *fp)
|
2019-11-18 01:32:22 +01:00
|
|
|
{
|
|
|
|
BIO *b = bio_from_file(fp);
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
if (b != NULL)
|
2020-08-16 21:25:08 +02:00
|
|
|
ret = OSSL_ENCODER_to_bio(ctx, b);
|
2019-11-18 01:32:22 +01:00
|
|
|
|
|
|
|
BIO_free(b);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
#endif
|