wolfSSL 3.11.1 for TLS1.3 beta
Fork of wolfSSL by
wolfssl/openssl/asn1.h
- Committer:
- wolfSSL
- Date:
- 2017-05-30
- Revision:
- 13:80fb167dafdf
- Parent:
- 3:6f956bdb3073
File content as of revision 13:80fb167dafdf:
/* asn1.h for openssl */ #ifndef WOLFSSL_ASN1_H_ #define WOLFSSL_ASN1_H_ struct WOLFSSL_ASN1_BIT_STRING { int length; int type; char* data; long flags; }; struct WOLFSSL_ASN1_STRING { int length; int type; char* data; long flags; }; #endif /* WOLFSSL_ASN1_H_ */