OpenMediaID 1.0.1

dotnet add package OpenMediaID --version 1.0.1
                    
NuGet\Install-Package OpenMediaID -Version 1.0.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="OpenMediaID" Version="1.0.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="OpenMediaID" Version="1.0.1" />
                    
Directory.Packages.props
<PackageReference Include="OpenMediaID" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add OpenMediaID --version 1.0.1
                    
#r "nuget: OpenMediaID, 1.0.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.
#addin nuget:?package=OpenMediaID&version=1.0.1
                    
Install OpenMediaID as a Cake Addin
#tool nuget:?package=OpenMediaID&version=1.0.1
                    
Install OpenMediaID as a Cake Tool

OpenMediaID

OpenMediaID is an open-source .NET library and container format for signing, verifying, and describing media collections in a secure and portable way.

It allows developers, publishers, and teams to:

  • Create signed metadata packages for collections of media files
  • Verify the integrity and origin of media using embedded public key signatures
  • Embed previews, thumbnails, and structured metadata

โœ… Features

  • โœ๏ธ Digital signing using RSA private keys
  • ๐Ÿ” Signature verification using public keys
  • ๐Ÿ“ฆ ZIP-based .medid container format
  • ๐Ÿ“„ Metadata stored as human-readable JSON
  • ๐Ÿ–ผ Supports thumbnails and preview media
  • ๐Ÿ›  .NET 8+ library and NuGet package

๐Ÿ“ฆ Installation

Install via NuGet:

dotnet add package OpenMediaID

Or via Visual Studio NuGet Manager: OpenMediaID


๐Ÿ“‚ The .medid Container Format

A .medid file is a ZIP archive containing:

my-collection.medid
โ”œโ”€โ”€ medid.json         # core metadata file (signed)
โ”œโ”€โ”€ public.key         # optional: embedded public key
โ”œโ”€โ”€ info.md            # optional: human-readable info
โ”œโ”€โ”€ thumbnails/        # optional preview images
โ””โ”€โ”€ media/             # optional preview media

๐Ÿงฐ Example Usage

๐Ÿ” Signing a media package

var keyPair = KeyPairGenerator.Generate();
var signed = MedidSigner.Sign(medidFile, keyPair.PrivateKey, "Your Name", "pubkey-2025");
MedidPackage.Save(signed, "package.medid", keyPair.PublicKey);

โœ… Verifying a signed package

var medid = MedidPackage.Load("package.medid", out var pubkey);
bool isValid = MedidVerifier.Verify(medid, pubkey);

๐Ÿงพ Creating a metadata file

var entry = new MediaEntry
{
    Filename = "image.jpg",
    Hash = "sha256:...",
    LengthInBytes = 102400,
    MimeType = "image/jpeg",
    Metadata = new MediaMetadata { Width = 800, Height = 600 },
    ThumbnailPath = "thumbnails/image.jpg"
};

var collection = new MediaCollection
{
    Name = "My Images",
    Publisher = "Example Corp",
    Created = DateTime.UtcNow,
    Entries = new() { entry }
};

var medidFile = new MedidFile
{
    Collection = collection
};

๐Ÿ”’ Key Generation

var (priv, pub) = KeyPairGenerator.Generate();
File.WriteAllBytes("private.key", priv);
File.WriteAllBytes("public.key", pub);

To securely store private keys:

var encrypted = EncryptedKeyManager.EncryptPrivateKey(priv, "MyPassword");
var decrypted = EncryptedKeyManager.DecryptPrivateKey(encrypted, "MyPassword");

๐Ÿ“„ License

MIT License ยฉ 2025 OpenMediaID Project (Idea and Made by: Christof Rakowski)

This project utilizes the following open-source libraries:

Please refer to the respective license files for detailed terms and conditions.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.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
1.0.1 82 3/28/2025
1.0.0 89 3/27/2025