mirror of
https://github.com/Proxmark/proxmark3.git
synced 2024-11-21 04:50:14 -08:00
6b882a3918
* add pkwrite * asn1print * asn1dump and CA * added PrintAndLogEx for merge commits between repo easier than now * changelog
22 lines
737 B
C
22 lines
737 B
C
//-----------------------------------------------------------------------------
|
|
// Copyright (C) 2018 Merlok
|
|
//
|
|
// This code is licensed to you under the terms of the GNU GPL, version 2 or,
|
|
// at your option, any later version. See the LICENSE.txt file for the text of
|
|
// the license.
|
|
//-----------------------------------------------------------------------------
|
|
// CA PEM certificates
|
|
//-----------------------------------------------------------------------------
|
|
//
|
|
|
|
#ifndef __ADDITIONAL_CA_H__
|
|
#define __ADDITIONAL_CA_H__
|
|
|
|
#include <stddef.h>
|
|
|
|
// Concatenation of all CA certificates in PEM format if available
|
|
extern const char additional_ca_pem[];
|
|
extern const size_t additional_ca_pem_len;
|
|
|
|
#endif /* __ADDITIONAL_CA_H__ */
|