📄 ospx509.h
字号:
/**########################################################################*########################################################################*########################################################################* * COPYRIGHT (c) 1998, 1999 by TransNexus, LLC * * This software contains proprietary and confidential information * of TransNexus, LLC. Except as may be set forth in the license * agreement under which this software is supplied, use, disclosure, * or reproduction is prohibited without the prior, express, written* consent of TransNexus, LLC. * *******#########################################################################*#########################################################################*#########################################################################*//* * ospx509.h - Constants and prototypes for X509 Certificate object. */#ifndef _OSP_X509_H#define _OSP_X509_H#include "osp.h"#include "ospasn1.h"#include "ospx500.h"#include "osppkcs1.h"#define OSPC_CERT_STATE_START 0#define OSPC_CERT_STATE_TLV 1#define OSPC_CERT_STATE_DISPLAY_CERT 2#define OSPC_CERT_STATE_FATAL 9998#define OSPC_CERT_STATE_EXIT 9999#define OSPC_CERT_MAX_EXTENSIONS 10#define OSPC_CERT_MAX_FLD_LENGTH 1000#define OSPC_CERT_MAX_SERIALNUM_LENGTH 20#define OSPC_CERT_MAX_SIG_ALGORITHM_LENGTH 20#define OSPC_CERT_MAX_REQUEST_ATTRIBUTES 10typedef struct { OSPTOBJECTID ExtnId; OSPTBOOL Critical; OSPTASN1BUFFER *ExtnValue; } OSPTCERTEXT;/*-------------------------------------------*//* X509 certificate typedef *//*-------------------------------------------*/ #ifdef __cplusplusextern "C" {#endif /* * Member functions */ int OSPPX509CertGetCustDeviceId( OSPTASN1OBJECT *ospvCertificate, unsigned long *ospvCustomerId, unsigned long *ospvDeviceId); int OSPPX509CertIsParentCertificate( OSPTASN1OBJECT *ospvParentCertificate, OSPTASN1OBJECT *ospvChildCertficate); int OSPPX509CertCheckCertificateData( OSPTASN1OBJECT *ospvTestCertificate, OSPTASN1OBJECT *ospvSignerPublicKey); int OSPPX509CertValidateCertificate( OSPTASN1OBJECT *ospvTestCertificate, OSPTASN1OBJECT *ospvAuthorityCertificates[], unsigned int ospvNumberOfAuthorityCertificates, int *ospvParentIndex); int OSPPX509CertTestContext( OSPTASN1OBJECT *ospvCertInfo); int OSPPX509CertCreate( unsigned char *, OSPTASN1OBJECT **); int OSPPX509CertDelete( OSPTASN1OBJECT **); int OSPPX509CertGetElement( OSPTASN1OBJECT *ospvCertInfo, OSPEASN1DATAREFID ospvDataRefId, OSPTASN1ELEMENTINFO **ospvElementInfo); int OSPPX509CertGetCertificate( OSPTASN1OBJECT *ospvCertInfo, /* In - Certificate context */ unsigned char **ospvCertificate, unsigned *ospvCertificateLength); int OSPPX509CertCreate( unsigned char *ospvCertificate, OSPTASN1OBJECT **ospvCertInfo); int OSPPX509CertSetCertificate( OSPTASN1OBJECT *ospvCertInfo, unsigned char *ospvEncodedCertificate);#ifdef __cplusplus}#endif#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -