Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/SamuelFisher/i2pdotnet
.NET library for using the I2P Simple Anonymous Messaging (SAM v3.0) bridge
https://github.com/SamuelFisher/i2pdotnet
csharp dotnet i2p
Last synced: 2 months ago
JSON representation
.NET library for using the I2P Simple Anonymous Messaging (SAM v3.0) bridge
- Host: GitHub
- URL: https://github.com/SamuelFisher/i2pdotnet
- Owner: SamuelFisher
- License: other
- Created: 2017-01-03T20:45:27.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-07-09T17:21:12.000Z (over 7 years ago)
- Last Synced: 2024-08-04T04:04:54.280Z (6 months ago)
- Topics: csharp, dotnet, i2p
- Language: C#
- Size: 35.2 KB
- Stars: 5
- Watchers: 2
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
- awesome-i2p - i2pdotnet - .NET library for using the I2P Simple Anonymous Messaging (SAM v3.0) bridge. (Libraries / I2Pd)
README
# 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.
```csharp
// 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...");
```