Renesas / SecureDweet
Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers asn1.h Source File

asn1.h

00001 /* asn1.h for openssl */
00002 
00003 #ifndef WOLFSSL_ASN1_H_
00004 #define WOLFSSL_ASN1_H_
00005 struct WOLFSSL_ASN1_BIT_STRING {
00006     int length;
00007     int type;
00008     char* data;
00009     long flags;
00010 };
00011 
00012 struct WOLFSSL_ASN1_STRING {
00013     int length;
00014     int type;
00015     char* data;
00016     long flags;
00017 };
00018 
00019 #endif /* WOLFSSL_ASN1_H_ */
00020