Skip to main content
  • Home
  • login
  • Browse the archive

    swh mirror partner logo
swh logo
SoftwareHeritage
Software
Heritage
Mirror
Features
  • Search

  • Downloads

  • Save code now

  • Add forge now

  • Help

  • 4c7f64c
  • /
  • recipes
  • /
  • 61-test_bio_readbuffer.t
Raw File
Permalinks

To reference or cite the objects present in the Software Heritage archive, permalinks based on SoftWare Hash IDentifiers (SWHIDs) must be used.
Select below a type of object currently browsed in order to display its associated SWHID and permalink.

  • content
  • directory
content badge Iframe embedding
swh:1:cnt:e10ab746ae38f36d23f3daa779eec539d70cbd5e
directory badge Iframe embedding
swh:1:dir:e3c45e8542f9e0eabbf404348a694816630cd933
61-test_bio_readbuffer.t
#! /usr/bin/env perl
# Copyright 2021 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

use strict;
use warnings;

use OpenSSL::Test qw(:DEFAULT srctop_file);

setup('test_bio_readbuffer');

my $pemfile = srctop_file("test", "certs", "leaf.pem");
my $derfile = 'readbuffer_leaf.der';

plan tests => 3;

ok(run(app([ 'openssl', 'x509', '-inform', 'PEM', '-in', $pemfile,
             '-outform', 'DER', '-out', $derfile])),
   "Generate a DER certificate");

ok(run(test(["bio_readbuffer_test", $derfile])),
   "Running bio_readbuffer_test $derfile");

ok(run(test(["bio_readbuffer_test", $pemfile])),
   "Running bio_readbuffer_test $pemfile");

ENEA — Copyright (C), ENEA. License: GNU AGPLv3+.
Legal notes  ::  JavaScript license information ::  Web API

back to top