Commit d8f9213a authored by Richard Levitte's avatar Richard Levitte
Browse files

Rather use -out parameter than redirect stdout



On some platforms, setting stdout to binary mode isn't quite enough,
which makes the result unusable.  With -out, we have better control.

Reviewed-by: default avatarRich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/2939)
parent 64e2b23c
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -21,8 +21,8 @@ plan tests => 5;
#using test/testrsa.pem which happens to be a 512 bit RSA
ok(run(app(['openssl', 'dgst', '-sign', srctop_file('test', 'testrsa.pem'), '-sha1',
            '-sigopt', 'rsa_padding_mode:pss', '-sigopt', 'rsa_pss_saltlen:-3',
            '-sigopt', 'rsa_mgf1_md:sha512', srctop_file('test', 'testrsa.pem')],
           stdout => 'testrsapss.sig')),
            '-sigopt', 'rsa_mgf1_md:sha512', '-out', 'testrsapss.sig',
            srctop_file('test', 'testrsa.pem')])),
   "openssl dgst -sign");

with({ exit_checker => sub { return shift == 1; } },