VirtualBox

source: vbox/trunk/include/iprt/crypto/rc4.h@ 74712

Last change on this file since 74712 was 74712, checked in by vboxsync, 6 years ago

IPRT/crypto: 2nd attempt at dealing with system openssl where RC4_INT is defined as something other than "unsigned int" (which isn't available in include/iprt/crypto/rc4.h, so there's no other option than relaxing the compile time assertion) in these cases.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.7 KB
Line 
1/** @file
2 * IPRT - Crypto - Alleged RC4 Cipher.
3 */
4
5/*
6 * Copyright (C) 2018 Oracle Corporation
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * The contents of this file may alternatively be used under the terms
17 * of the Common Development and Distribution License Version 1.0
18 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
19 * VirtualBox OSE distribution, in which case the provisions of the
20 * CDDL are applicable instead of those of the GPL.
21 *
22 * You may elect to license modified versions of this file under the
23 * terms and conditions of either the GPL or the CDDL or both.
24 */
25
26#ifndef ___iprt_crypto_rc4_h
27#define ___iprt_crypto_rc4_h
28
29#include <iprt/types.h>
30
31
32RT_C_DECLS_BEGIN
33
34/** @defgroup grp_rt_cr_rc4 RTCrRc4 - Alleged RC4 Cipher.
35 * @ingroup grp_rt_crypto
36 * @{
37 */
38
39/** RC4 key structure. */
40typedef union RTCRRC4KEY
41{
42 uint64_t au64Padding[(2 + 256) / 2];
43#ifdef HEADER_RC4_H
44 RC4_KEY Ossl;
45#endif
46} RTCRRC4KEY;
47/** Pointer to a RC4 key structure. */
48typedef RTCRRC4KEY *PRTCRRC4KEY;
49/** Pointer to a const RC4 key structure. */
50typedef RTCRRC4KEY const *PCRTCRRC4KEY;
51
52RTDECL(void) RTCrRc4SetKey(PRTCRRC4KEY pKey, size_t cbData, void const *pvData);
53RTDECL(void) RTCrRc4(PRTCRRC4KEY pKey, size_t cbData, void const *pvDataIn, void *pvDataOut);
54
55/** @} */
56
57RT_C_DECLS_END
58
59#endif
60
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette