Blame crypto/kdf/kdf_local.h

Packit c4476c
/*
Packit c4476c
 * Copyright 2018 The OpenSSL Project Authors. All Rights Reserved.
Packit c4476c
 * Copyright (c) 2018, Oracle and/or its affiliates.  All rights reserved.
Packit c4476c
 *
Packit c4476c
 * Licensed under the Apache License 2.0 (the "License").  You may not use
Packit c4476c
 * this file except in compliance with the License.  You can obtain a copy
Packit c4476c
 * in the file LICENSE in the source distribution or at
Packit c4476c
 * https://www.openssl.org/source/license.html
Packit c4476c
 */
Packit c4476c
Packit c4476c
int call_ctrl(int (*ctrl)(EVP_KDF_IMPL *impl, int cmd, va_list args),
Packit c4476c
              EVP_KDF_IMPL *impl, int cmd, ...);
Packit c4476c
int kdf_str2ctrl(EVP_KDF_IMPL *impl,
Packit c4476c
                 int (*ctrl)(EVP_KDF_IMPL *impl, int cmd, va_list args),
Packit c4476c
                 int cmd, const char *str);
Packit c4476c
int kdf_hex2ctrl(EVP_KDF_IMPL *impl,
Packit c4476c
                 int (*ctrl)(EVP_KDF_IMPL *impl, int cmd, va_list args),
Packit c4476c
                 int cmd, const char *hex);
Packit c4476c
int kdf_md2ctrl(EVP_KDF_IMPL *impl,
Packit c4476c
                int (*ctrl)(EVP_KDF_IMPL *impl, int cmd, va_list args),
Packit c4476c
                int cmd, const char *md_name);
Packit c4476c
int kdf_cipher2ctrl(EVP_KDF_IMPL *impl,
Packit c4476c
                    int (*ctrl)(EVP_KDF_IMPL *impl, int cmd, va_list args),
Packit c4476c
                    int cmd, const char *cipher_name);