AuthEd25519 1.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package AuthEd25519 --version 1.0.0
NuGet\Install-Package AuthEd25519 -Version 1.0.0
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="AuthEd25519" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add AuthEd25519 --version 1.0.0
#r "nuget: AuthEd25519, 1.0.0"
#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 AuthEd25519 as a Cake Addin
#addin nuget:?package=AuthEd25519&version=1.0.0

// Install AuthEd25519 as a Cake Tool
#tool nuget:?package=AuthEd25519&version=1.0.0

Ultra-simple high-level library for using Ed25519 to manage accounts. F# Examples:

    let _,acc = new_account()
    let _,acc2 = new_account()
    
    let verify = mk_verifier
    
    let signed_hello = acc.sign "Hello"
    let verified_hello_by_acc = verify [acc.pub] signed_hello
    let verified_hello_by_acc2 = verify [acc2.pub] signed_hello
    let verified_hello_by_acc_or_acc2 = verify [acc.pub; acc2.pub] signed_hello
    
    printfn "this was signed by 1: %A" verified_hello_by_acc
    printfn "it was not signed by 2: %A" verified_hello_by_acc2
    printfn "it was signed by either 1 or 2: %A" verified_hello_by_acc_or_acc2
    
    printfn "%A" (acc.pub.string, acc.priv.string)
    
    let accdb =
        AuthEd25519.sload_account
            "sCCwEDMG7DD+IuFjJPmWjNX9XCbwO3PlssXVHoBS6Ww="
            "G0UtCOMc7pdVlSE8z/8kQwDf0L3ZpgT5ywZqNaBxs1qwILAQMwbsMP4i4WMk+ZaM1f1cJvA7c+WyxdUegFLpbA=="
    let verifydb = AuthEd25519.mk_verifier [AuthEd25519.spub "sCCwEDMG7DD+IuFjJPmWjNX9XCbwO3PlssXVHoBS6Ww="]
    
    let proof_Mircea_owns_razor_flame = accdb.sign "(Mircea, razor_flame)"
    
    printfn "Proof of ownership that is only valid if database signed it: %A" <| verifydb proof_Mircea_owns_razor_flame
    
Product Compatible and additional computed target framework versions.
.NET Framework net472 is compatible.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on AuthEd25519:

Package Downloads
HOG.Hermes.Client

Package Description

HOG.Database.Client

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.1.7 1,302 12/10/2021
2.1.6 311 11/1/2021
2.1.5 7,706 9/26/2021
2.1.4 295 9/26/2021
2.1.3 905 9/26/2021
2.1.2 855 9/26/2021
2.1.1 941 9/26/2021
2.1.0 949 9/25/2021
2.0.7 289 9/25/2021
2.0.6 915 9/25/2021
2.0.5 328 9/25/2021
2.0.4 317 9/14/2021
2.0.3 462 9/14/2021
2.0.2 315 9/14/2021
2.0.1 274 9/14/2021
2.0.0 305 9/14/2021
1.1.3 307 7/14/2021
1.1.2 4,312 7/10/2021
1.1.1 885 7/10/2021
1.1.0 992 7/10/2021
1.0.10 327 7/9/2021
1.0.9 304 7/9/2021
1.0.8 330 5/28/2021
1.0.7 322 5/28/2021
1.0.6 327 5/28/2021
1.0.5 332 5/28/2021
1.0.4 1,440 4/11/2021
1.0.3 355 4/2/2021
1.0.2 322 4/2/2021
1.0.1 343 4/2/2021
1.0.0 357 4/2/2021