1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
/*
* Embedded Linux library
* Copyright (C) 2018 Intel Corporation
*
* SPDX-License-Identifier: LGPL-2.1-or-later
*/
struct asn1_oid;
struct l_certchain *certchain_new_from_leaf(struct l_cert *leaf);
void certchain_link_issuer(struct l_certchain *chain, struct l_cert *ca);
const uint8_t *cert_get_extension(struct l_cert *cert,
const struct asn1_oid *ext_id,
bool *out_critical, size_t *out_len);
struct l_key *cert_key_from_pkcs8_private_key_info(const uint8_t *der,
size_t der_len);
struct l_key *cert_key_from_pkcs8_encrypted_private_key_info(const uint8_t *der,
size_t der_len,
const char *passphrase);
struct l_key *cert_key_from_pkcs1_rsa_private_key(const uint8_t *der,
size_t der_len);
struct cert_pkcs12_hash {
enum l_checksum_type alg;
unsigned int len;
unsigned int u;
unsigned int v;
struct asn1_oid oid;
};
uint8_t *cert_pkcs12_pbkdf(const char *password,
const struct cert_pkcs12_hash *hash,
const uint8_t *salt, size_t salt_len,
unsigned int iterations, uint8_t id,
size_t key_len);
struct l_cipher *cert_cipher_from_pkcs_alg_id(const uint8_t *id_asn1,
size_t id_asn1_len,
const char *password,
bool *out_is_block);
|