Skip to content

.NET library for using the I2P Simple Anonymous Messaging (SAM v3.0) bridge

License

Notifications You must be signed in to change notification settings

SamuelFisher/i2pdotnet

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

i2pdotnet

A .NET library for using the I2P Simple Anonymous Messaging (SAM v3.0) bridge.

Supported platforms:

  • .NET Standard 1.6

This includes the .NET Framework, .NET Core, UWP and more.

Usage:

You need to have I2P installed, and enable the SAMv3 bridge in the router console.

See the SampleApp project for a detailed example.

// Connect to SAM bridge
var session = new I2PSession(samPort: 7656);
await session.InitializeAsync();

// Connect to a peer
var stream = await session.ConnectAsync(destination);
var writer = new BinaryWriter(stream);
writer.Write("Testing...");

About

.NET library for using the I2P Simple Anonymous Messaging (SAM v3.0) bridge

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages