Use SSL3_CK_VALUE_MASK instead of hardcoded 0xffff and remove some
authortb <tb@openbsd.org>
Mon, 6 Jun 2022 16:12:30 +0000 (16:12 +0000)
committertb <tb@openbsd.org>
Mon, 6 Jun 2022 16:12:30 +0000 (16:12 +0000)
SSLv2 remnants.

ok jsing

lib/libssl/ssl_asn1.c
lib/libssl/ssl_txt.c

index 70a50ac..e0bf92d 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: ssl_asn1.c,v 1.61 2022/01/11 18:39:28 jsing Exp $ */
+/* $OpenBSD: ssl_asn1.c,v 1.62 2022/06/06 16:12:30 tb Exp $ */
 /*
  * Copyright (c) 2016 Joel Sing <jsing@openbsd.org>
  *
@@ -71,7 +71,7 @@ SSL_SESSION_encode(SSL_SESSION *s, unsigned char **out, size_t *out_len,
 
        /* Cipher suite ID. */
        /* XXX - require cipher to be non-NULL or always/only use cipher_id. */
-       cid = (uint16_t)(s->cipher_id & 0xffff);
+       cid = (uint16_t)(s->cipher_id & SSL3_CK_VALUE_MASK);
        if (s->cipher != NULL)
                cid = ssl3_cipher_get_value(s->cipher);
        if (!CBB_add_asn1(&session, &cipher_suite, CBS_ASN1_OCTETSTRING))
index 0968543..b7da7bb 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: ssl_txt.c,v 1.32 2022/06/06 15:20:54 tb Exp $ */
+/* $OpenBSD: ssl_txt.c,v 1.33 2022/06/06 16:12:31 tb Exp $ */
 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  * All rights reserved.
  *
@@ -121,15 +121,9 @@ SSL_SESSION_print(BIO *bp, const SSL_SESSION *x)
                goto err;
 
        if (x->cipher == NULL) {
-               if ((x->cipher_id & 0xff000000) == 0x02000000) {
-                       if (BIO_printf(bp, "    Cipher    : %06lX\n",
-                           x->cipher_id & 0xffffff) <= 0)
-                               goto err;
-               } else {
-                       if (BIO_printf(bp, "    Cipher    : %04lX\n",
-                           x->cipher_id & 0xffff) <= 0)
-                               goto err;
-               }
+               if (BIO_printf(bp, "    Cipher    : %04lX\n",
+                   x->cipher_id & SSL3_CK_VALUE_MASK) <= 0)
+                       goto err;
        } else {
                const char *cipher_name = "unknown";