|
NetBurner 3.5.6
PDF Version |
Return values indicating the type of PEM data that was converted. More...
Macros | |
| #define | CONVERT_NONE (0) |
| No valid PEM data found or conversion failed. | |
| #define | CONVERT_RSA_PRIVATE_KEY (1) |
| RSA Private Key in PKCS#1 format. | |
| #define | CONVERT_DSA_PRIVATE_KEY (2) |
| DSA Private Key. | |
| #define | CONVERT_CERTIFICATE (3) |
| X.509 Certificate. | |
| #define | CONVERT_ECDSA_PRIVATE_KEY (4) |
| ECDSA (Elliptic Curve) Private Key. | |
Return values indicating the type of PEM data that was converted.
| #define CONVERT_CERTIFICATE (3) |
#include <convert.h>
X.509 Certificate.
Indicates successful conversion of an X.509 certificate. The converted binary data contains the certificate in DER format.
| #define CONVERT_DSA_PRIVATE_KEY (2) |
#include <convert.h>
DSA Private Key.
Indicates successful conversion of a DSA (Digital Signature Algorithm) private key. The converted binary data contains the key in DER format.
| #define CONVERT_ECDSA_PRIVATE_KEY (4) |
#include <convert.h>
ECDSA (Elliptic Curve) Private Key.
Indicates successful conversion of an ECDSA private key. The converted binary data contains the key in DER format.
| #define CONVERT_NONE (0) |
#include <convert.h>
No valid PEM data found or conversion failed.
Returned when:
| #define CONVERT_RSA_PRIVATE_KEY (1) |
#include <convert.h>
RSA Private Key in PKCS#1 format.
Indicates successful conversion of an RSA private key. The converted binary data contains the key in DER format.