Implement SSL_{CTX_}_{g,s}et_security_level(3)
authortb <tb@openbsd.org>
Tue, 28 Jun 2022 20:34:17 +0000 (20:34 +0000)
committertb <tb@openbsd.org>
Tue, 28 Jun 2022 20:34:17 +0000 (20:34 +0000)
ok beck jsing sthen

lib/libssl/ssl_lib.c

index 6adc28a..2bbc8e5 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: ssl_lib.c,v 1.290 2022/03/18 18:01:17 jsing Exp $ */
+/* $OpenBSD: ssl_lib.c,v 1.291 2022/06/28 20:34:17 tb Exp $ */
 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  * All rights reserved.
  *
@@ -3271,6 +3271,30 @@ SSL_CTX_get_ssl_method(const SSL_CTX *ctx)
        return ctx->method;
 }
 
+int
+SSL_CTX_get_security_level(const SSL_CTX *ctx)
+{
+       return ctx->internal->cert->security_level;
+}
+
+void
+SSL_CTX_set_security_level(SSL_CTX *ctx, int level)
+{
+       ctx->internal->cert->security_level = level;
+}
+
+int
+SSL_get_security_level(const SSL *ssl)
+{
+       return ssl->cert->security_level;
+}
+
+void
+SSL_set_security_level(SSL *ssl, int level)
+{
+       ssl->cert->security_level = level;
+}
+
 static int
 ssl_cipher_id_cmp_BSEARCH_CMP_FN(const void *a_, const void *b_)
 {