OpenZiti.NET 0.9.24114.27096

dotnet add package OpenZiti.NET --version 0.9.24114.27096
NuGet\Install-Package OpenZiti.NET -Version 0.9.24114.27096
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="OpenZiti.NET" Version="0.9.24114.27096" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add OpenZiti.NET --version 0.9.24114.27096
#r "nuget: OpenZiti.NET, 0.9.24114.27096"
#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 OpenZiti.NET as a Cake Addin
#addin nuget:?package=OpenZiti.NET&version=0.9.24114.27096

// Install OpenZiti.NET as a Cake Tool
#tool nuget:?package=OpenZiti.NET&version=0.9.24114.27096

Ziggy using the sdk-csharp

OpenZiti.NET SDK

The OpenZiti.NET SDK is a project that enables developers to create clients and applications leveraging an OpenZiti overlay network. OpenZiti is a modern, programmable overlay network with associated edge components, for application-embedded, zero trust network connectivity, written by developers for developers. The SDK harnesses that power via APIs that allow developers to imagine and develop solutions beyond what OpenZiti handles by default.

Using an OpenZiti SDK for your application's communication needs makes your application secure-by-default by incorporating zero trust principles directly into the application itself. All communication over an OpenZiti overlay network is performed over a mutual TLS (mtls) secured connection. OpenZiti also implements truly end-to-end encryption (via libsodium) by default. The developer does not need to do more than incorporate the OpenZiti SDK into an application to gain these immediate benefits. The OpenZiti overlay network provides numerous other security features that combine to make a compelling security solution for any application.

If you're new to OpenZiti or overlay networks it might be useful to check out the official documentation or inspect [https://github.com/openziti/ziti](the main repo) and learn a more about OpenZiti and zero trust in general.

Getting Started

To get started you'll need to have an OpenZiti overlay network. Deploy one by running one of the OpenZiti network quickstarts.

With access to an OpenZiti overlay network, there are a few important concepts that are helpful to understand, but are not required for executing the samples:

The samples do not reference the OpenZiti.NET NuGet package. Instead, they reference the OpenZiti.NET project in this repository. When you want to add OpenZiti to your dotnet project, you would instead choose to reference and use the OpenZiti.NET NuGet package.

Running the Samples

The samples included in this repo are designed to allow you to explore this SDK and explore OpenZiti without fully understanding these concepts. You will of course eventually need to understand these terms to make the most of the SDK, but to get started you won't need to. See the official documentation for more info and engage with our community on Discourse.

Running the samples are designed to be self-bootstrapping. They will use the OpenZiti Management API to create all the required configuration inside the OpenZiti overlay network that is necessary. This means the samples can be run over and over without worrying the sample will fail, but it also means they setup the sample every time. This will become important as you progress with your OpenZiti journey and try to reuse the configuration created by the sample.

There are currently four different samples you can run, each of which outlining a different principle of OpenZiti. Find a sample that seems interesting, and follow the readme to that sample to learn how to run it.

Sample Description
OpenAPI PetStore Illustrates how to invoke an HTTP-based API securely
Weather Illustrates how to make an http-based request and output the content to the screen using wttr.in
Sample Illustrates how to use OpenZiti as a server AND a client. Demonstrates true application-embedded zero trust!
Enrollment A simple sample demonstrating how to enroll an OpenZiti Identity

An Overlay to Test With

The latest versions of the ziti CLI contains a command called ziti edge quickstart. This command can be used with all of the samples to easily setup an environment to test with. You can also run the samples with an overlay generated by following one of the quickstarts and also works with CloudZiti when supplying the "noint" parameter to the samples.

Getting the ziti CLI

The ziti CLI tool is a convinient way to access the OpenZiti overlay network via a command line, instead of by API. You'll likely want to have the ziti CLI available at times as it's handy to use for exploring the OpenZiti configuration. If you do not have the ziti CLI, but wish to install it, you can quickly install it by running a single powershell command (as always, read the script before executing):

iex(iwr -Uri https://get.openziti.io/quick/getZiti.ps1)

For Contributors

If you are looking to contribute to the project you will need to understand what it is and what it and how the pieces all come together. This project provides two nuget packages, designed to make it easy to include OpenZiti into any dotnet project.

Idiomatic dotnet SDK - OpenZiti.NET

This NuGet package provides the idiomatic SDK implementation. It is built and published to NuGet using this GitHub workflow. The workflow itself is straightforward and boils down to invoking dotnet build on the OpenZiti.NET, calling the "NugetPush" target. You will find that target declared in the project file and pushes to whatever source you pass to dotnet build with the /p:NUGET_SOURCE=. Building this package with this process should be very straightforward.

The task will use the OpenZiti.NET.nuspec to build the package. This means updates to references MUST be reflected in that file. An automated process occurs when the OpenZiti.NET project completes a successful build which will emit an updated .nuspec file in that folder. If this file changes, you must commit it.

Testing Changes

To test changes to the code, it's usually easiest to make a new sample that exercises the functionality you want to change/update and run that sample. This will also set us up for success when trying to illustrate/document the sample to consumers of the package.

Native Logging

It's often vital to enable a deeper loglevel for the native C SDK (provided by the OpenZiti.NET.native package. You do this by invoking SetLogLevel:

API.SetLogLevel(ZitiLogLevel.INFO);
HTTP Logging

Some of the samples are based around HTTP. A convenience handler exists to make logging the HTTP request/response easy. See OpenZiti.Debugging.LoggingHandler and how it is used it samples. You will need to enable the logging before it produces output by setting:

loggingHttpHandler.LogHttpRequestResponse = true;

Native NuGet Package - OpenZiti.NET.native

The Native NuGet package is built and published by GitHub actions. It currently supports the following architectures:

  • Windows - x64 (64bit)
  • Windows - x86 (32bit)
  • MacOS - x86_64
  • MacOS - arm64
  • linux - x64
  • linux - arm64
  • linux - arm

By far, the most complex part of dealing with the dotnet sdk is building the native library. The native library provides a few helper functions, writting in C that are vital to the dotnet SDK. Building the native library is somewhat complex. If you're unfamiliar with cmake, you'll need to learn a fair bit about what cmake is and how it works. Also, the C SDK now uses vcpkg which is also somewhat complex for a new learner. We leverage a CMakePresets.json which you'll need to learn about. The cmake CMakeLists.txt is located in the ZitiNativeApiForDotnetCore.

If you are interested in learning how the native library is built, see the github action file](.github/workflows/native-nuget-publish.yml). For more information about the ZitiNativeApiForDotnetCore, go to the readme in the project folder.

Once the the native library is published to NuGet, the idiomatic SDK references the NuGet package to provide the single, cross-platform, idiomatic dotnet NuGet package for easy downstream inclusion in projects.

Rotating the NuGet API Key

Here's a short set of instructions for how to rotate the NuGet API key for pushing updates

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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.24114.27096 50 4/23/2024
0.9.24110.33830 88 4/19/2024
0.9.24110.33281 69 4/19/2024
0.9.23355.37738 182 12/21/2023
0.9.23333.34671 141 11/29/2023
0.9.23281.34941 151 10/8/2023
0.9.23281.34554 113 10/8/2023
0.9.23281.34352 114 10/8/2023
0.9.23281.1784 122 10/8/2023
0.9.23280.7069 116 10/7/2023
0.9.23280.6541 119 10/7/2023
0.9.23279.2165 109 10/6/2023
0.9.23279.1546 110 10/6/2023
0.9.23278.39276 108 10/5/2023
0.9.23278.27370 117 10/5/2023
0.9.23278.27114 111 10/5/2023
0.9.23278.26805 107 10/5/2023
0.9.23278.25961 125 10/5/2023
0.9.23278.9057 114 10/5/2023
0.9.23278.8716 112 10/5/2023
0.9.23278.8479 118 10/5/2023
0.9.23275.20750 106 10/2/2023
0.9.23275.6699 125 10/2/2023
0.9.23274.4672 119 10/1/2023
0.9.23274.4363 130 10/1/2023
0.9.23274.3238 123 10/1/2023
0.9.2458.8563 105 2/27/2024
0.9.2458.8500 85 2/27/2024
0.8.339.42160 182 12/5/2022