]> git.ipfire.org Git - thirdparty/openssl.git/blame - include/crypto/async.h
providers: Add SM4 XTS implementation
[thirdparty/openssl.git] / include / crypto / async.h
CommitLineData
0f113f3e 1/*
a28d06f3 2 * Copyright 2016-2021 The OpenSSL Project Authors. All Rights Reserved.
e84be9b4 3 *
48f4ad77 4 * Licensed under the Apache License 2.0 (the "License"). You may not use
21dcbebc
RS
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
e84be9b4
DSH
8 */
9
80ce21fe
F
10#ifndef OSSL_CRYPTO_ASYNC_H
11# define OSSL_CRYPTO_ASYNC_H
12# pragma once
13
14# include <openssl/async.h>
e84be9b4 15
7b9f8f7f 16int async_init(void);
ed49f43a 17void async_deinit(void);
e84be9b4 18
80ce21fe 19#endif