Poteko.EmbeddableWireGuard.Net 0.9.1

dotnet add package Poteko.EmbeddableWireGuard.Net --version 0.9.1
NuGet\Install-Package Poteko.EmbeddableWireGuard.Net -Version 0.9.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Poteko.EmbeddableWireGuard.Net" Version="0.9.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Poteko.EmbeddableWireGuard.Net --version 0.9.1
#r "nuget: Poteko.EmbeddableWireGuard.Net, 0.9.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Poteko.EmbeddableWireGuard.Net as a Cake Addin
#addin nuget:?package=Poteko.EmbeddableWireGuard.Net&version=0.9.1

// Install Poteko.EmbeddableWireGuard.Net as a Cake Tool
#tool nuget:?package=Poteko.EmbeddableWireGuard.Net&version=0.9.1

Embeddable WireGuard Library .NET Wrapper

A .NET wrapper for embeddable-wg-library.

Usage

Install the package from nuget.org: Install-Package Poteko.EmbeddableWireGuard.Net, and follow the same usage as in the C library.

using System.Net;
using EmbeddableWireGuard.Net;

WireGuardFunctions.AddDevice("wgtest");
var wgdev = new WireGuardDevice
{
    Name = "wgtest",
    Flags = WireGuardDeviceFlags.HasPrivateKey | WireGuardDeviceFlags.HasListenPort | WireGuardDeviceFlags.ReplacePeers,
    ListenPort = 34567,
    PrivateKey = Convert.FromBase64String("AABUdvCEVcxqQV4AyUdSOPjXlfptBV2T4j+RmbSoIEg="),
    Peers = new List<WireGuardPeer>{
        new WireGuardPeer {
            Flags = WireGuardPeerFlags.HasPublicKey | WireGuardPeerFlags.HasPersistentKeepaliveInterval | WireGuardPeerFlags.ReplaceAllowedIps,
            EndpointAddress = System.Net.IPAddress.Parse("fd58:b34c:c416::"),
            EndpointPort = 24455,
            PublicKey = Convert.FromBase64String("CCBUdvCEVcxqQV4AyUdSOPjXlfptBV2T4j+RmbSoIEg="),
            PersistentKeepaliveInterval = 30,
            AllowedIps = new List<WireGuardAllowedIp> {
                new WireGuardAllowedIp {
                    Address = IPAddress.Parse("2.3.4.5"),
                    Cidr = 32,
                },
                new WireGuardAllowedIp {
                    Address = IPAddress.Parse("ffee:ccdd:eecc:dead:beef::"),
                    Cidr = 64,
                }
            }
         },
    },
};
WireGuardFunctions.SetWireGuardDevice(wgdev);
var devices = WireGuardFunctions.ListDeviceNames().Select(name => WireGuardFunctions.GetWireGuardDevice(name)).ToList();
WireGuardFunctions.DeleteDevice("wgtest");

License

The dependency Embeddable WireGuard C Library is licensed under LGPL-2.1+, while this wrapper is licensed under MIT.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.1

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.9.1 249 6/19/2023
0.9.0 116 6/19/2023