Move all the neutered PBE API to the bottom of the file
authortb <tb@openbsd.org>
Fri, 15 Dec 2023 14:21:14 +0000 (14:21 +0000)
committertb <tb@openbsd.org>
Fri, 15 Dec 2023 14:21:14 +0000 (14:21 +0000)
lib/libcrypto/evp/evp_pbe.c

index b5f83bf..edcd385 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: evp_pbe.c,v 1.30 2023/12/15 14:16:44 tb Exp $ */
+/* $OpenBSD: evp_pbe.c,v 1.31 2023/12/15 14:21:14 tb Exp $ */
 /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
  * project 1999.
  */
@@ -197,22 +197,6 @@ OBJ_bsearch_pbe2(EVP_PBE_CTL *key, EVP_PBE_CTL const *base, int num)
            pbe2_cmp_BSEARCH_CMP_FN);
 }
 
-int
-EVP_PBE_alg_add_type(int pbe_type, int pbe_nid, int cipher_nid, int md_nid,
-    EVP_PBE_KEYGEN *keygen)
-{
-       EVPerror(ERR_R_DISABLED);
-       return 0;
-}
-
-int
-EVP_PBE_alg_add(int nid, const EVP_CIPHER *cipher, const EVP_MD *md,
-    EVP_PBE_KEYGEN *keygen)
-{
-       EVPerror(ERR_R_DISABLED);
-       return 0;
-}
-
 int
 EVP_PBE_find(int type, int pbe_nid,
     int *pcnid, int *pmnid, EVP_PBE_KEYGEN **pkeygen)
@@ -238,6 +222,22 @@ EVP_PBE_find(int type, int pbe_nid,
        return 1;
 }
 
+int
+EVP_PBE_alg_add_type(int pbe_type, int pbe_nid, int cipher_nid, int md_nid,
+    EVP_PBE_KEYGEN *keygen)
+{
+       EVPerror(ERR_R_DISABLED);
+       return 0;
+}
+
+int
+EVP_PBE_alg_add(int nid, const EVP_CIPHER *cipher, const EVP_MD *md,
+    EVP_PBE_KEYGEN *keygen)
+{
+       EVPerror(ERR_R_DISABLED);
+       return 0;
+}
+
 void
 EVP_PBE_cleanup(void)
 {