Skip to content

Latest commit

 

History

History
34 lines (19 loc) · 1.05 KB

README.md

File metadata and controls

34 lines (19 loc) · 1.05 KB

Key generator for Strongly Named Assembly

This is the key generator for creating strongly named assembly

Requirements

  • dotnet runtime 2.1 or later(required netcoreapp2.1)

Installation

Itn.SnkUtils is packaged as dotnet global tool. So you can get binary by the following command;

dotnet tool install -g Itn.SnkUtils

and you can now execute this by dotnet snkutils [commands].

Basic Usage

you can get option list by dotnet snkutils --help or dotnet snkutils [command name] --help

Creating new one

dotnet snkutils create [output path] you must specify [output path].

Export to PKCS8(openssl's RSA PEM format)

dotnet snkutils convert-to [snk file path] [output file path] you can read info by openssl rsa -in [output file path] -inform PEM -text

Import from PKCS8(openssl's RSA PEM format)

dotnet snkutils convert-to [pem file path] [output snk file path]