GuestHost/installation/VBoxWinDrvInst.cpp: Try harder if DiInstallDriverW() returns...
[vbox.git] / include / iprt / crypto / rc4.h
blobe4aa73060c3d9db61920d07c15b3abd67b8bddb7
1 /** @file
2 * IPRT - Crypto - Alleged RC4 Cipher.
3 */
5 /*
6 * Copyright (C) 2018-2024 Oracle and/or its affiliates.
8 * This file is part of VirtualBox base platform packages, as
9 * available from https://www.virtualbox.org.
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation, in version 3 of the
14 * License.
16 * This program is distributed in the hope that it will be useful, but
17 * WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, see <https://www.gnu.org/licenses>.
24 * The contents of this file may alternatively be used under the terms
25 * of the Common Development and Distribution License Version 1.0
26 * (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
27 * in the VirtualBox distribution, in which case the provisions of the
28 * CDDL are applicable instead of those of the GPL.
30 * You may elect to license modified versions of this file under the
31 * terms and conditions of either the GPL or the CDDL or both.
33 * SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
36 #ifndef IPRT_INCLUDED_crypto_rc4_h
37 #define IPRT_INCLUDED_crypto_rc4_h
38 #ifndef RT_WITHOUT_PRAGMA_ONCE
39 # pragma once
40 #endif
42 #include <iprt/types.h>
45 RT_C_DECLS_BEGIN
47 /** @defgroup grp_rt_cr_rc4 RTCrRc4 - Alleged RC4 Cipher.
48 * @ingroup grp_rt_crypto
49 * @{
52 /** RC4 key structure. */
53 typedef union RTCRRC4KEY
55 uint64_t au64Padding[(2 + 256) / 2];
56 #ifdef HEADER_RC4_H
57 RC4_KEY Ossl;
58 #endif
59 } RTCRRC4KEY;
60 /** Pointer to a RC4 key structure. */
61 typedef RTCRRC4KEY *PRTCRRC4KEY;
62 /** Pointer to a const RC4 key structure. */
63 typedef RTCRRC4KEY const *PCRTCRRC4KEY;
65 RTDECL(void) RTCrRc4SetKey(PRTCRRC4KEY pKey, size_t cbData, void const *pvData);
66 RTDECL(void) RTCrRc4(PRTCRRC4KEY pKey, size_t cbData, void const *pvDataIn, void *pvDataOut);
68 /** @} */
70 RT_C_DECLS_END
72 #endif /* !IPRT_INCLUDED_crypto_rc4_h */