Example program to test AES-GCM functionality. Used for a workshop

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

_asn1_buf Struct Reference

_asn1_buf Struct Reference

Type-length-value structure that allows for ASN1 using DER. More...

#include <asn1.h>

Data Fields

int tag
 ASN1 type, e.g.
size_t len
 ASN1 length, e.g.
unsigned char * p
 ASN1 data, e.g.

Detailed Description

Type-length-value structure that allows for ASN1 using DER.

Definition at line 120 of file asn1.h.


Field Documentation

size_t len

ASN1 length, e.g.

in octets.

Definition at line 123 of file asn1.h.

unsigned char* p

ASN1 data, e.g.

in ASCII.

Definition at line 124 of file asn1.h.

int tag

ASN1 type, e.g.

ASN1_UTF8_STRING.

Definition at line 122 of file asn1.h.