VirtualBox

source: vbox/trunk/src/VBox/Runtime/common/crypto/key-internal.h

Last change on this file was 100442, checked in by vboxsync, 11 months ago

IPRT,OpenSSL: Support ECDSA for verficiation purposes when IPRT links with OpenSSL. This required quite a bit of cleanups, so not entirely no-risk. bugref:10479 ticketref:21621

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.7 KB
Line 
1/* $Id: key-internal.h 100442 2023-07-08 11:10:51Z vboxsync $ */
2/** @file
3 * IPRT - Crypto - Cryptographic Keys, Internal Header.
4 */
5
6/*
7 * Copyright (C) 2006-2023 Oracle and/or its affiliates.
8 *
9 * This file is part of VirtualBox base platform packages, as
10 * available from https://www.virtualbox.org.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation, in version 3 of the
15 * License.
16 *
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, see <https://www.gnu.org/licenses>.
24 *
25 * The contents of this file may alternatively be used under the terms
26 * of the Common Development and Distribution License Version 1.0
27 * (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
28 * in the VirtualBox distribution, in which case the provisions of the
29 * CDDL are applicable instead of those of the GPL.
30 *
31 * You may elect to license modified versions of this file under the
32 * terms and conditions of either the GPL or the CDDL or both.
33 *
34 * SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
35 */
36
37#ifndef IPRT_INCLUDED_SRC_common_crypto_key_internal_h
38#define IPRT_INCLUDED_SRC_common_crypto_key_internal_h
39#ifndef RT_WITHOUT_PRAGMA_ONCE
40# pragma once
41#endif
42
43#include <iprt/crypto/key.h>
44#include <iprt/bignum.h>
45
46
47/**
48 * Cryptographic key - core bits.
49 */
50typedef struct RTCRKEYINT
51{
52 /** Magic value (RTCRKEYINT_MAGIC). */
53 uint32_t u32Magic;
54 /** Reference counter. */
55 uint32_t volatile cRefs;
56 /** The key type. */
57 RTCRKEYTYPE enmType;
58 /** Flags, RTCRKEYINT_F_XXX. */
59 uint32_t fFlags;
60 /** Number of bits in the key. */
61 uint32_t cBits;
62
63 /** Type specific data. */
64 union
65 {
66 /** RTCRKEYTYPE_RSA_PRIVATE. */
67 struct
68 {
69 /** The modulus. */
70 RTBIGNUM Modulus;
71 /** The private exponent. */
72 RTBIGNUM PrivateExponent;
73 /** The public exponent. */
74 RTBIGNUM PublicExponent;
75 /** @todo add more bits as needed. */
76 } RsaPrivate;
77
78 /** RTCRKEYTYPE_RSA_PUBLIC. */
79 struct
80 {
81 /** The modulus. */
82 RTBIGNUM Modulus;
83 /** The exponent. */
84 RTBIGNUM Exponent;
85 } RsaPublic;
86
87 /** RTCRKEYTYPE_ECDSA_PUBLIC. */
88 struct
89 {
90 /** The named curve. */
91 RTASN1OBJID NamedCurve;
92 /** @todo ECPoint. */
93 } EcdsaPublic;
94 } u;
95
96#if defined(IPRT_WITH_OPENSSL)
97 /** Size of raw key copy. */
98 uint32_t cbEncoded;
99 /** Raw copy of the key, for openssl and such.
100 * If sensitive, this is a safer allocation, otherwise it follows the structure. */
101 uint8_t *pbEncoded;
102#endif
103} RTCRKEYINT;
104/** Pointer to a crypographic key. */
105typedef RTCRKEYINT *PRTCRKEYINT;
106/** Pointer to a const crypographic key. */
107typedef RTCRKEYINT const *PCRTCRKEYINT;
108
109
110
111/** @name RTCRKEYINT_F_XXX.
112 * @{ */
113/** Key contains sensitive information, so no unnecessary copies. */
114#define RTCRKEYINT_F_SENSITIVE UINT32_C(0x00000001)
115/** Set if private key bits are present. */
116#define RTCRKEYINT_F_PRIVATE UINT32_C(0x00000002)
117/** Set if public key bits are present. */
118#define RTCRKEYINT_F_PUBLIC UINT32_C(0x00000004)
119/** Set if the cbEncoded/pbEncoded members are present. */
120#define RTCRKEYINT_F_INCLUDE_ENCODED UINT32_C(0x00000008)
121/** @} */
122
123DECLHIDDEN(int) rtCrKeyCreateWorker(PRTCRKEYINT *ppThis, RTCRKEYTYPE enmType, uint32_t fFlags,
124 void const *pvEncoded, uint32_t cbEncoded);
125DECLHIDDEN(int) rtCrKeyCreateRsaPublic(PRTCRKEY phKey, const void *pvKeyBits, uint32_t cbKeyBits,
126 PRTERRINFO pErrInfo, const char *pszErrorTag);
127DECLHIDDEN(int) rtCrKeyCreateRsaPrivate(PRTCRKEY phKey, const void *pvKeyBits, uint32_t cbKeyBits,
128 PRTERRINFO pErrInfo, const char *pszErrorTag);
129DECLHIDDEN(int) rtCrKeyCreateEcdsaPublic(PRTCRKEY phKey, PCRTASN1DYNTYPE pParameters,
130 const void *pvKeyBits, uint32_t cbKeyBits, PRTERRINFO pErrInfo, const char *pszErrorTag);
131
132#endif /* !IPRT_INCLUDED_SRC_common_crypto_key_internal_h */
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use