OpenMediaID 1.0.1
dotnet add package OpenMediaID --version 1.0.1
NuGet\Install-Package OpenMediaID -Version 1.0.1
<PackageReference Include="OpenMediaID" Version="1.0.1" />
<PackageVersion Include="OpenMediaID" Version="1.0.1" />
<PackageReference Include="OpenMediaID" />
paket add OpenMediaID --version 1.0.1
#r "nuget: OpenMediaID, 1.0.1"
#addin nuget:?package=OpenMediaID&version=1.0.1
#tool nuget:?package=OpenMediaID&version=1.0.1
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)
Copyright Notice
This project utilizes the following open-source libraries:
- Blake3 (https://www.nuget.org/packages/Blake3), licensed under the BSD-2-Clause license.
- SixLabors.ImageSharp (https://www.nuget.org/packages/SixLabors.ImageSharp), licensed under the Six Labors Split License, Version 1.0.
Please refer to the respective license files for detailed terms and conditions.
Product | Versions 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. |
-
net8.0
- Blake3 (>= 2.0.0)
- SixLabors.ImageSharp (>= 3.1.7)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.