diff options
author | Michael Brown <mcb30@ipxe.org> | 2020-12-07 13:55:12 +0000 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2020-12-07 13:55:12 +0000 |
commit | e33f5210813d704477eb16b45fbbaec143d8da95 (patch) | |
tree | 1125d2f639012960e51a490f361edff2e531851c | |
parent | 25b53afa5bbd7bc38c3ca060d9c70259db6d118a (diff) | |
download | ipxe-e33f5210813d704477eb16b45fbbaec143d8da95.tar.gz |
[asn1] Add constant for UTF-8 string tag
Signed-off-by: Michael Brown <mcb30@ipxe.org>
-rw-r--r-- | src/include/ipxe/asn1.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/include/ipxe/asn1.h b/src/include/ipxe/asn1.h index 7bfba6066..7b0aacb5d 100644 --- a/src/include/ipxe/asn1.h +++ b/src/include/ipxe/asn1.h @@ -75,6 +75,9 @@ struct asn1_builder_header { /** ASN.1 enumeration */ #define ASN1_ENUMERATED 0x0a +/** ASN.1 UTF-8 string */ +#define ASN1_UTF8_STRING 0x0c + /** ASN.1 UTC time */ #define ASN1_UTC_TIME 0x17 |