x509_key_parse.h
Go to the documentation of this file.
1 /**
2  * @file x509_key_parse.h
3  * @brief Parsing of ASN.1 encoded keys
4  *
5  * @section License
6  *
7  * SPDX-License-Identifier: GPL-2.0-or-later
8  *
9  * Copyright (C) 2010-2025 Oryx Embedded SARL. All rights reserved.
10  *
11  * This file is part of CycloneCRYPTO Open.
12  *
13  * This program is free software; you can redistribute it and/or
14  * modify it under the terms of the GNU General Public License
15  * as published by the Free Software Foundation; either version 2
16  * of the License, or (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software Foundation,
25  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
26  *
27  * @author Oryx Embedded SARL (www.oryx-embedded.com)
28  * @version 2.5.0
29  **/
30 
31 #ifndef _X509_KEY_PARSE_H
32 #define _X509_KEY_PARSE_H
33 
34 //Dependencies
35 #include "core/crypto.h"
36 #include "pkix/x509_common.h"
37 
38 //C++ guard
39 #ifdef __cplusplus
40 extern "C" {
41 #endif
42 
43 //Key parsing functions
44 error_t x509ParseSubjectPublicKeyInfo(const uint8_t *data, size_t length,
45  size_t *totalLength, X509SubjectPublicKeyInfo *subjectPublicKeyInfo);
46 
47 error_t x509ParseAlgoId(const uint8_t *data, size_t length,
48  size_t *totalLength, X509SubjectPublicKeyInfo *subjectPublicKeyInfo);
49 
50 error_t x509ParseRsaPublicKey(const uint8_t *data, size_t length,
51  X509RsaPublicKey *rsaPublicKey);
52 
53 error_t x509ParseDsaPublicKey(const uint8_t *data, size_t length,
54  X509DsaPublicKey *dsaPublicKey);
55 
56 error_t x509ParseDsaParameters(const uint8_t *data, size_t length,
57  X509DsaParameters *dsaParams);
58 
59 error_t x509ParseEcPublicKey(const uint8_t *data, size_t length,
60  X509EcPublicKey *ecPublicKey);
61 
62 error_t x509ParseEcParameters(const uint8_t *data, size_t length,
63  X509EcParameters *ecParams);
64 
66  const X509SubjectPublicKeyInfo *publicKeyInfo);
67 
69  const X509SubjectPublicKeyInfo *publicKeyInfo);
70 
72  const X509SubjectPublicKeyInfo *publicKeyInfo);
73 
75  const X509SubjectPublicKeyInfo *publicKeyInfo);
76 
77 //C++ guard
78 #ifdef __cplusplus
79 }
80 #endif
81 
82 #endif
X.509 common definitions.
uint8_t data[]
Definition: ethernet.h:222
error_t x509ImportRsaPublicKey(RsaPublicKey *publicKey, const X509SubjectPublicKeyInfo *publicKeyInfo)
Import an RSA public key.
uint16_t totalLength
Definition: ipv4.h:323
error_t x509ParseAlgoId(const uint8_t *data, size_t length, size_t *totalLength, X509SubjectPublicKeyInfo *subjectPublicKeyInfo)
Parse AlgorithmIdentifier structure.
EC public key.
Definition: x509_common.h:828
error_t x509ParseDsaParameters(const uint8_t *data, size_t length, X509DsaParameters *dsaParams)
Parse DSA domain parameters.
DSA public key.
Definition: dsa.h:61
error_t
Error codes.
Definition: error.h:43
EC parameters.
Definition: x509_common.h:818
EdDSA public key.
Definition: eddsa.h:64
RSA public key.
Definition: x509_common.h:785
error_t x509ImportEcPublicKey(EcPublicKey *publicKey, const X509SubjectPublicKeyInfo *publicKeyInfo)
Import an EC public key.
RSA public key.
Definition: rsa.h:57
General definitions for cryptographic algorithms.
uint8_t length
Definition: tcp.h:375
error_t x509ParseRsaPublicKey(const uint8_t *data, size_t length, X509RsaPublicKey *rsaPublicKey)
Parse RSAPublicKey structure.
error_t x509ParseEcPublicKey(const uint8_t *data, size_t length, X509EcPublicKey *ecPublicKey)
Parse ECPublicKey structure.
EC public key.
Definition: ec.h:421
error_t x509ParseDsaPublicKey(const uint8_t *data, size_t length, X509DsaPublicKey *dsaPublicKey)
Parse DSAPublicKey structure.
Subject Public Key Information extension.
Definition: x509_common.h:838
DSA domain parameters.
Definition: x509_common.h:796
error_t x509ImportEddsaPublicKey(EddsaPublicKey *publicKey, const X509SubjectPublicKeyInfo *publicKeyInfo)
Import an EdDSA public key.
error_t x509ParseSubjectPublicKeyInfo(const uint8_t *data, size_t length, size_t *totalLength, X509SubjectPublicKeyInfo *subjectPublicKeyInfo)
Parse SubjectPublicKeyInfo structure.
DSA public key.
Definition: x509_common.h:808
error_t x509ParseEcParameters(const uint8_t *data, size_t length, X509EcParameters *ecParams)
Parse ECParameters structure.
error_t x509ImportDsaPublicKey(DsaPublicKey *publicKey, const X509SubjectPublicKeyInfo *publicKeyInfo)
Import a DSA public key.