Skip to content

martingegenleitner/DoubleKeyEncryptionService

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

page_type languages products description urlFragment
sample
csharp
dotnet
Key store for Double Key Encryption

Source code repository for the Double Key Encryption (DKE) service for Microsoft 365

Use this repository to download the DKE service. Once you download, install, and set up the DKE service, you keep your keys under your control. This way, your keys are never exposed to Microsoft. Follow the instructions at https://aka.ms/dke to get started.

Warning

IMPORTANT NOTICE: This project includes code for encryption libraries. You are responsible for complying with all applicable international and national laws that apply to this software, including the U.S. Export Administration Regulations, as well as end-user, end use and destination restrictions by U.S. and other governments.

Contents

File or folder Description
src Contains the DKE service source code.
.gitignore Identifies what to ignore at commit time.
CODE_OF_CONDUCT.md Outlines expectations for participation in Microsoft-managed open source communities.
README.md This README file.
LICENSE The license for the DKE service software.
SECURITY.md Describes how to contact Microsoft to report a security vulnerability.

Generating key on KSP

# Test if KSP is registered successfully
certutil -csp "SafeNet Key Storage Provider" -csptest

# Create a simple RSA4096-KeyPair with certreq
$inf_content = @"
[Version]
Signature="$Windows NT$"
[NewRequest]
HashAlgorithm=sha512
KeyAlgorithm=RSA
KeyLength=4096
MachineKeySet=true
Subject="CN=my key"
ProviderName="SafeNet Key Storage Provider"
RequestType=PKCS10
"@
$inf_content | Out-File dummy-csr.inf
certreq -new dummy-csr.inf dummy.csr

# List created key. Take the id and place it into appsettings.json as keyId
certutil -csp "SafeNet Key Storage Provider" -key

Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.

When you submit a pull request, a CLA bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.

Coding Guidelines Capitalization Conventions

About

Download, install, and set up the Double Key Encryption service for Microsoft 365.

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 87.5%
  • PowerShell 12.5%