On Mon, May 11, 2015 at 01:48:31PM +0200, Hubert Kario via RT wrote:

> master has support for printing the IETF/IANA names, see -stdname options to 
> ciphers subcommand...

That flag seems to be subject to conditional compilation:

    #ifndef OPENSSL_NO_SSL_TRACE
            if (stdname) {
                const char *nm = SSL_CIPHER_standard_name(c);
                if (nm == NULL)
                    nm = "UNKNOWN";
                BIO_printf(bio_out, "%s - ", nm);
            }
    #endif

not sure why.  In particular it does nothing in my build, because
OPENSSL_NO_SSL_TRACE apears to be set (by default?).

-- 
        Viktor.
_______________________________________________
openssl-dev mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-dev

Reply via email to