https://github.com/bigbuildbench/stylianosnicoletti_dotnet-certificate-tool

https://github.com/bigbuildbench/stylianosnicoletti_dotnet-certificate-tool

Science Score: 13.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
  • DOI references
  • Academic publication links
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (7.5%) to scientific vocabulary
Last synced: 10 months ago · JSON representation

Repository

Basic Info
  • Host: GitHub
  • Owner: BigBuildBench
  • License: apache-2.0
  • Language: C#
  • Default Branch: master
  • Size: 614 KB
Statistics
  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • Open Issues: 0
  • Releases: 0
Created over 1 year ago · Last pushed over 1 year ago
Metadata Files
Readme License

README.md

Dotnet Certificate Tool

Directions

Command line tool to install and remove certificates from the current user's store. Mainly used to workaround the limitation of certificates installed in the current user's store in Unix hosts.

See following github issue for more information.

Installation

dotnet tool install --global dotnet-certificate-tool

Usage

Available arguments:

  • --base64 (-b): base 64 encoded certificate value
  • --file (-f): path to a *.pfx certificate file
  • --cert (-c): path to a PEM formatted certificate file
  • --key (-k): path to a PEM formatted key file
  • --password (-p): password for the certificate
  • --store-name (-s): certificate store name (defaults to My). See possible values here
  • --store-location (-l): certificate store location (defaults to CurrentUser). See possible values here

With a base 64 string

Assuming you have the following variables setup:

  • \$base64: base 64 encoded certificate value
  • \$password: pfx certificate password
  • \$thumbprint: certificate's thumbprint

certificate-tool add --base64 $base64 --password $password

certificate-tool remove --thumbprint $thumbprint

With a pfx file

Assuming you have the following variables setup:

  • \$password: pfx certificate password
  • \$thumbprint: certificate's thumbprint

certificate-tool add --file ./cert.pfx --password $password

certificate-tool remove --thumbprint $thumbprint

With PEM formatted files

Assuming you have the following variables setup:

  • \$password: pfx certificate password
  • \$thumbprint: certificate's thumbprint

certificate-tool add --cert ./cert.crt --key ./cert.key --password $password

certificate-tool remove --thumbprint $thumbprint

License

Copyright © 2020, GSoft inc. This code is licensed under the Apache License, Version 2.0. You may obtain a copy of this license here.

Owner

  • Name: BigBuildBench
  • Login: BigBuildBench
  • Kind: organization

abbr. B3, benchmarking the repo-level understanding capability of your LLMs by reconstructing project build-file.

GitHub Events

Total
  • Create event: 6
Last Year
  • Create event: 6

Dependencies

.github/workflows/release.yml actions
  • actions/checkout v2 composite
  • actions/setup-dotnet v4 composite
docker-example/Dockerfile docker
  • mcr.microsoft.com/dotnet/aspnet 8.0.0-bullseye-slim-amd64 build
  • mcr.microsoft.com/dotnet/sdk 8.0.100-bullseye-slim-amd64 build
docker-example/ConsoleApp/ConsoleApp.csproj nuget
src/GSoft.CertificateTool.csproj nuget