Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
wolfssl/openssl/asn1.h@3:6f956bdb3073, 2016-04-28 (annotated)
- Committer:
- wolfSSL
- Date:
- Thu Apr 28 00:56:55 2016 +0000
- Revision:
- 3:6f956bdb3073
wolfSSL 3.9.0
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
wolfSSL | 3:6f956bdb3073 | 1 | /* asn1.h for openssl */ |
wolfSSL | 3:6f956bdb3073 | 2 | |
wolfSSL | 3:6f956bdb3073 | 3 | #ifndef WOLFSSL_ASN1_H_ |
wolfSSL | 3:6f956bdb3073 | 4 | #define WOLFSSL_ASN1_H_ |
wolfSSL | 3:6f956bdb3073 | 5 | struct WOLFSSL_ASN1_BIT_STRING { |
wolfSSL | 3:6f956bdb3073 | 6 | int length; |
wolfSSL | 3:6f956bdb3073 | 7 | int type; |
wolfSSL | 3:6f956bdb3073 | 8 | char* data; |
wolfSSL | 3:6f956bdb3073 | 9 | long flags; |
wolfSSL | 3:6f956bdb3073 | 10 | }; |
wolfSSL | 3:6f956bdb3073 | 11 | |
wolfSSL | 3:6f956bdb3073 | 12 | struct WOLFSSL_ASN1_STRING { |
wolfSSL | 3:6f956bdb3073 | 13 | int length; |
wolfSSL | 3:6f956bdb3073 | 14 | int type; |
wolfSSL | 3:6f956bdb3073 | 15 | char* data; |
wolfSSL | 3:6f956bdb3073 | 16 | long flags; |
wolfSSL | 3:6f956bdb3073 | 17 | }; |
wolfSSL | 3:6f956bdb3073 | 18 | |
wolfSSL | 3:6f956bdb3073 | 19 | #endif /* WOLFSSL_ASN1_H_ */ |
wolfSSL | 3:6f956bdb3073 | 20 |