Skip to content

Latest commit

 

History

9 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Asn1Net.Writer

Build status

Managed library for writing ASN.1 objects.

Getting started

Asn1Net.Writer can easily encode any ASN.1 object:

public void WriteUtf8String()
{
	// prepare a stream to write objects to
	using (var ms = new MemoryStream())
	{
		// prepare what to write
		var asn1Obj = new Asn1Utf8String("Hello World of ASN.1");
		new DerWriter(ms).Write(asn1Obj);
		
		// that's it. Now use the stream as you like.
	}
}

More examples can be found in the Tests project.

Standing on the shoulders of giants

Asn1Net.Writer is developed with help of the following tools, libraries and applications:

About

Managed library for writing ASN.1 objects.

Resources

Stars

6 stars

Watchers

2 watching

Forks

Releases

Packages

Contributors

Languages