Asn Rust Reference Documentation

Asn

Current Version: 11.6.1

Chilkat.Asn

Load, inspect, build, edit, and encode ASN.1 structures in DER or XML form.

Chilkat.Asn represents an ASN.1 item and its optional child items. It can load ASN.1 from binary DER, encoded DER strings, files, or BinData; expose tags, tag values, primitive content, boolean and integer values, and child counts; build constructed structures such as SEQUENCE and SET; append common primitive types such as booleans, integers, big integers, bit strings, octets, OIDs, strings, times, null values, and context-specific items; convert ASN.1 to XML; reload from that XML form; and write the final structure back to DER.

Load DER data

Load ASN.1 from binary DER bytes, encoded text such as Base64 or hex, files, or existing BinData objects.

Inspect ASN.1 items

Read the item tag, tag value, constructed/primitive state, sub-item count, string content, boolean value, or integer value.

Build sequences and sets

Append constructed SEQUENCE and SET items, then add child ASN.1 values beneath them.

Append primitive values

Add booleans, integers, big integers, bit strings, octet strings, OIDs, strings, times, null values, and encoded byte content.

Context-specific tags

Add context-specific primitive or constructed items when working with ASN.1 formats that use tagged application-specific structures.

DER and XML conversion

Convert ASN.1 to XML for inspection or editing, load ASN.1 back from XML, and output the result as binary or encoded DER.

Common pattern: Load existing DER with LoadBinary, LoadEncoded, LoadBd, or LoadBinaryFile, inspect the tree with Tag, Constructed, NumSubItems, and GetSubItem, then extract primitive content or convert to XML with AsnToXml. To create ASN.1, start with a constructed item, append child values, and write the final DER with GetBinaryDer, GetEncodedDer, WriteBd, or WriteBinaryDer.

Object Creation

// Cargo.toml:
//     [dependencies]
//     chilkat = "11.6"

use chilkat::Asn;

// Once per process, before any other Chilkat call:
chilkat::unlock_bundle("Anything for 30-day trial")?;  // shorthand for Global::new().unlock_bundle(..)

let asn = Asn::new();
// ... the native object is freed when `asn` goes out of scope.
pub fn new() -> Asn

Creates the underlying native Chilkat object (Asn also implements Default). Every method takes &self, so the object never needs to be declared mut. A Asn is Send but not Sync: it may be moved to another thread, but a reference to it cannot be shared between threads at the same time.

impl Drop for Asn

The native object is freed when the Asn is dropped — when it goes out of scope, or explicitly with drop(asn). There is no Dispose method to call.

Errors

Methods that can fail return chilkat::Result<T>, which is Result<T, chilkat::Error>: a method whose only outcome is success or failure returns Result<()>, a method producing a string or an object returns Result<String> or Result<Asn>. The error carries the object's LastErrorText at the time of the failure (Error::last_error_text), the class and method names, and implements std::error::Error, so ? works in any function returning chilkat::Result or a Box<dyn Error>. Properties never fail, and methods that answer a question (has_..., is_..., ...) return a plain bool.

match asn.some_method(...) {
    Ok(value) => println!("{value:?}"),
    Err(e) => eprintln!("{}", e.last_error_text()),
}

Properties

BoolValue
// read/write
pub fn bool_value(&self) -> bool
pub fn set_bool_value(&self, value: bool)
Introduced in version 9.5.0.49

The ASN.1 item's boolean value if it is a boolean item.

top
Constructed
// read-only
pub fn constructed(&self) -> bool
Introduced in version 9.5.0.49

true if this ASN.1 item is a constructed item. Sequence and Set items are constructed and can contain sub-items. All other tags (boolean, integer, octets, utf8String, etc.) are primitive (non-constructed).

top
ContentStr
// read/write
pub fn content_str(&self) -> String
pub fn set_content_str(&self, value: &str)
Introduced in version 9.5.0.49

The ASN.1 item's content if it is an ASN.1 string type (such as Utf8String, BmpString, PrintableString, VisibleString, T61String, IA5String, NumericString, or UniversalString).

top
DebugLogFilePath
// read/write
pub fn debug_log_file_path(&self) -> String
pub fn set_debug_log_file_path(&self, value: &str)

If set to a file path, this property logs the LastErrorText of each Chilkat method or property call to the specified file. This logging helps identify the context and history of Chilkat calls leading up to any crash or hang, aiding in debugging.

Enabling the VerboseLogging property provides more detailed information. This property is mainly used for debugging rare instances where a Chilkat method call causes a hang or crash, which should generally not happen.

Possible causes of hangs include:

  • A timeout property set to 0, indicating an infinite timeout.
  • A hang occurring within an event callback in the application code.
  • An internal bug in the Chilkat code causing the hang.

More Information and Examples
top
IntValue
// read/write
pub fn int_value(&self) -> i32
pub fn set_int_value(&self, value: i32)
Introduced in version 9.5.0.49

The ASN.1 item's integer value if it is a small integer item.

top
LastErrorHtml
// read-only
pub fn last_error_html(&self) -> String

Provides HTML-formatted information about the last called method or property. If a method call fails or behaves unexpectedly, check this property for details. Note that information is available regardless of the method call's success.

top
LastErrorText
// read-only
pub fn last_error_text(&self) -> String

Provides plain text information about the last called method or property. If a method call fails or behaves unexpectedly, check this property for details. Note that information is available regardless of the method call's success.

top
LastErrorXml
// read-only
pub fn last_error_xml(&self) -> String

Provides XML-formatted information about the last called method or property. If a method call fails or behaves unexpectedly, check this property for details. Note that information is available regardless of the method call's success.

top
LastMethodSuccess
// read/write
pub fn last_method_success(&self) -> bool
pub fn set_last_method_success(&self, value: bool)

Indicates the success or failure of the most recent method call: true means success, false means failure. This property remains unchanged by property setters or getters. This method is present to address challenges in checking for null or Nothing returns in certain programming languages. Note: This property does not apply to methods that return integer values or to boolean-returning methods where the boolean does not indicate success or failure.

top
NumSubItems
// read-only
pub fn num_sub_items(&self) -> i32
Introduced in version 9.5.0.49

The number of sub-items contained within this ASN.1 item. Only constructed items, such as Sequence and Set will contain sub-iitems. Primitive items such as OIDs, octet strings, integers, etc. will never contain sub-items.

top
Tag
// read-only
pub fn tag(&self) -> String
Introduced in version 9.5.0.49

The ASN.1 item's tag as a descriptive string. Possible values are:

boolean
integer
bitString
octets
null
oid
utf8String
relativeOid
sequence
set
numericString
printableString
t61String
ia5String
utcTime
bmpString

top
TagValue
// read-only
pub fn tag_value(&self) -> i32
Introduced in version 9.5.0.49

The ASN.1 item's tag as a integer value. The integer values for possible tags are as follows:

boolean (1)
integer (2)
bitString (3)
octets (4)
null (5)
oid (6)
utf8String (12)
relativeOid (13)
sequence (16)
set (17)
numericString (18)
printableString (19)
t61String (20)
ia5String (22)
utcTime (23)
bmpString (30)

top
VerboseLogging
// read/write
pub fn verbose_logging(&self) -> bool
pub fn set_verbose_logging(&self, value: bool)

If set to true, then the contents of LastErrorText (or LastErrorXml, or LastErrorHtml) may contain more verbose information. The default value is false. Verbose logging should only be used for debugging. The potentially large quantity of logged information may adversely affect peformance.

top
Version
// read-only
pub fn version(&self) -> String

Version of the component/library, such as "10.1.0"

More Information and Examples
top

Methods

AppendBigInt
pub fn append_big_int(&self, encoded_bytes: &str, encoding: &str) -> Result<()>
Introduced in version 9.5.0.49

Appends an ASN.1 integer, but one that is a big (huge) integer that is too large to be represented by an integer variable. The bytes composing the integer are passed in encoded string format (such as base64, hex, etc.). The byte order must be big-endian. The encoding may be any of the following encodings: Base64, Hex, Base58, modBase64, Base32, UU, QP (for quoted-printable), URL (for url-encoding), Q, B, url_oath, url_rfc1738, url_rfc2396, and url_rfc3986. The encoding name is case insensitive (for example, both Base64 and base64 are treated the same).

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
AppendBits
pub fn append_bits(&self, encoded_bytes: &str, encoding: &str) -> Result<()>
Introduced in version 9.5.0.49

Appends an ASN.1 bit string to the caller's sub-items. The bytes containing the bits are passed in encoded string format (such as base64, hex, etc.). The byte order must be big-endian (MSB first). The encoding may be any of the following encodings: Base64, Hex, Base58, modBase64, Base32, UU, QP (for quoted-printable), URL (for url-encoding), Q, B, url_oath, url_rfc1738, url_rfc2396, and url_rfc3986. The encoding name is case insensitive (for example, both Base64 and base64 are treated the same).

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
AppendBool
pub fn append_bool(&self, value: bool) -> Result<()>
Introduced in version 9.5.0.49

Appends an ASN.1 boolean item to the caller's sub-items. Items may only be appended to constructed data types such as Sequence and Set.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
AppendContextConstructed
pub fn append_context_constructed(&self, tag: i32) -> Result<()>
Introduced in version 9.5.0.50

Appends an ASN.1 context-specific constructed item to the caller's sub-items.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
AppendContextPrimitive
pub fn append_context_primitive(&self, tag: i32, encoded_bytes: &str, encoding: &str) -> Result<()>
Introduced in version 9.5.0.50

Appends an ASN.1 context-specific primitive item to the caller's sub-items. The bytes are passed in encoded string format (such as base64, hex, etc.). The encoding may be any of the following encodings: Base64, Hex, Base58, modBase64, Base32, UU, QP (for quoted-printable), URL (for url-encoding), Q, B, url_oath, url_rfc1738, url_rfc2396, and url_rfc3986. The encoding name is case insensitive (for example, both Base64 and base64 are treated the same).

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
AppendInt
pub fn append_int(&self, value: i32) -> Result<()>
Introduced in version 9.5.0.49

Appends an ASN.1 integer item to the caller's sub-items. Items may only be appended to constructed data types such as Sequence and Set.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
AppendNull
pub fn append_null(&self) -> Result<()>
Introduced in version 9.5.0.49

Appends an ASN.1 null item to the caller's sub-items. Items may only be appended to constructed data types such as Sequence and Set.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
AppendOctets
pub fn append_octets(&self, encoded_bytes: &str, encoding: &str) -> Result<()>
Introduced in version 9.5.0.49

Appends an ASN.1 octet string to the caller's sub-items. The bytes are passed in encoded string format (such as base64, hex, etc.). The encoding may be any of the following encodings: Base64, Hex, Base58, modBase64, Base32, UU, QP (for quoted-printable), URL (for url-encoding), Q, B, url_oath, url_rfc1738, url_rfc2396, and url_rfc3986. The encoding name is case insensitive (for example, both Base64 and base64 are treated the same).

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
AppendOid
pub fn append_oid(&self, oid: &str) -> Result<()>
Introduced in version 9.5.0.49

Appends an ASN.1 OID (object identifier) to the caller's sub-items. The OID is passed in string form, such as 1.2.840.113549.1.9.1.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
AppendSequence
pub fn append_sequence(&self) -> Result<()>
Introduced in version 9.5.0.49

Appends an ASN.1 sequence item to the caller's sub-items.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
AppendSequence2
pub fn append_sequence2(&self) -> Result<()>
Introduced in version 9.5.0.50

Appends an ASN.1 sequence item to the caller's sub-items, and updates the internal reference to point to the newly appended sequence item.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
AppendSequenceR
pub fn append_sequence_r(&self) -> Result<Asn>
Introduced in version 9.5.0.50

Appends an ASN.1 sequence item to the caller's sub-items, and returns the newly appended sequence item.

Returns Err(chilkat::Error) on failure.

top
AppendSet
pub fn append_set(&self) -> Result<()>
Introduced in version 9.5.0.49

Appends an ASN.1 set item to the caller's sub-items.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
AppendSet2
pub fn append_set2(&self) -> Result<()>
Introduced in version 9.5.0.50

Appends an ASN.1 set item to the caller's sub-items, and updates the internal reference to point to the newly appended set item.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
AppendSetR
pub fn append_set_r(&self) -> Result<Asn>
Introduced in version 9.5.0.50

Appends an ASN.1 set item to the caller's sub-items, and returns the newly appended set item.

Returns Err(chilkat::Error) on failure.

top
AppendString
pub fn append_string(&self, str_type: &str, value: &str) -> Result<()>
Introduced in version 9.5.0.49

Appends a string item to the caller's sub-items. The str_type specifies the type of string to be added. It may be utf8, ia5, t61, printable, visible, numeric, universal, or bmp. The value must conform to the ASN.1 restrictions imposed for a given string type. The utf8, bmp, and universal types have no restrictions on what characters are allowed. In general, unless a specific type of string is required, choose the utf8 type.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
AppendTime
pub fn append_time(&self, time_format: &str, date_time_str: &str) -> Result<()>
Introduced in version 9.5.0.49

Appends a UTCTime item to the caller's sub-items. The time_format specifies the format of the date_time_str. It should be set to utc. (In the future, this method will be expanded to append GeneralizedTime items by using generalized for time_format.) To append the current date/time, set date_time_str equal to the empty string or the keyword now. Otherwise, the date_time_str should be in the UTC time format YYMMDDhhmm[ss]Z or YYMMDDhhmm[ss](+|-)hhmm.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
AsnToXml
pub fn asn_to_xml(&self) -> Result<String>
Introduced in version 9.5.0.49

Converts ASN.1 to XML and returns the XML string.

Returns Err(chilkat::Error) on failure.

top
DeleteSubItem
pub fn delete_sub_item(&self, index: i32) -> Result<()>
Introduced in version 9.5.0.49

Discards the Nth sub-item. (The 1st sub-item is at index 0.)

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
GetEncodedContent
pub fn get_encoded_content(&self, encoding: &str) -> Result<String>
Introduced in version 9.5.0.49

Returns the content of the ASN.1 item in encoded string form. The encoding may be any of the following encodings: Base64, Hex, Base58, modBase64, Base32, UU, QP (for quoted-printable), URL (for url-encoding), Q, B, url_oath, url_rfc1738, url_rfc2396, and url_rfc3986. The encoding name is case insensitive (for example, both Base64 and base64 are treated the same).

Returns Err(chilkat::Error) on failure.

top
GetEncodedDer
pub fn get_encoded_der(&self, encoding: &str) -> Result<String>
Introduced in version 9.5.0.49

Returns the binary DER in encoded string form. The encoding indicates the encoding and can be base64, hex, uu, quoted-printable, base32, or modbase64.

Returns Err(chilkat::Error) on failure.

top
GetLastSubItem
pub fn get_last_sub_item(&self) -> Result<Asn>
Introduced in version 9.5.0.49

Returns the last ASN.1 sub-item. This method can be called immediately after any Append* method to access the appended item.

Returns Err(chilkat::Error) on failure.

top
GetSubItem
pub fn get_sub_item(&self, index: i32) -> Result<Asn>
Introduced in version 9.5.0.49

Returns the Nth ASN.1 sub-item. The 1st sub-item is at index 0.

Returns Err(chilkat::Error) on failure.

top
LoadAsnXml
pub fn load_asn_xml(&self, xml_str: &str) -> Result<()>
Introduced in version 9.5.0.49

Loads ASN.1 from the XML representation (such as that created by the AsnToXml method).

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
LoadBd
pub fn load_bd(&self, bd: &BinData) -> Result<()>
Introduced in version 9.5.0.77

Loads ASN.1 from the binary DER contained in bd.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
LoadBinaryFile
pub fn load_binary_file(&self, path: &str) -> Result<()>
Introduced in version 9.5.0.49

Loads ASN.1 from a binary DER file.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
LoadEncoded
pub fn load_encoded(&self, asn_content: &str, encoding: &str) -> Result<()>
Introduced in version 9.5.0.49

Loads ASN.1 from an encoded string. The encoding can be base64, hex, uu, quoted-printable, base32, or modbase64.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
SetEncodedContent
pub fn set_encoded_content(&self, encoded_bytes: &str, encoding: &str) -> Result<()>
Introduced in version 9.5.0.49

Sets the content of this primitive ASN.1 item. The encoding may be any of the following encodings: Base64, Hex, Base58, modBase64, Base32, UU, QP (for quoted-printable), URL (for url-encoding), Q, B, url_oath, url_rfc1738, url_rfc2396, and url_rfc3986. The encoding name is case insensitive (for example, both Base64 and base64 are treated the same).

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
WriteBd
pub fn write_bd(&self, bd: &BinData) -> Result<()>
Introduced in version 9.5.0.77

Appends the ASN.1 in binary DER format to bd.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
WriteBinaryDer
pub fn write_binary_der(&self, path: &str) -> Result<()>
Introduced in version 9.5.0.49

Writes the ASN.1 in binary DER form to a file.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top