https://github.com/tg123/azkeyvault
Golang crypto.Signer and crypto.Decrypter backed by Azure KeyVault
https://github.com/tg123/azkeyvault
azure-keyvault golang-library keyvault
Last synced: 7 months ago
JSON representation
Golang crypto.Signer and crypto.Decrypter backed by Azure KeyVault
- Host: GitHub
- URL: https://github.com/tg123/azkeyvault
- Owner: tg123
- License: mit
- Created: 2021-08-01T22:49:22.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2023-11-02T17:39:07.000Z (almost 2 years ago)
- Last Synced: 2025-02-01T13:25:26.641Z (9 months ago)
- Topics: azure-keyvault, golang-library, keyvault
- Language: Go
- Homepage: https://pkg.go.dev/github.com/tg123/azkeyvault/v2
- Size: 45.9 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Signer and Decrypter for Azure KeyVault
[](https://pkg.go.dev/github.com/tg123/azkeyvault/v2)This Go package wraps Azure KeyVault, [sign](https://learn.microsoft.com/en-us/rest/api/keyvault/keys/sign/sign) and [decrypt](https://learn.microsoft.com/en-us/rest/api/keyvault/keys/decrypt/decrypt), into Golang crypto.Signer and crypto.Decrypter.
The private key is protected by Azure KeyVault and no direct access from app.## Examples
[HTTPS Server](example_https_server_test.go)
[SSH Client](example_ssh_client_test.go)
## Permissions required
Keep minimal permision to protect the private keys. No extra permission required if API is not in use.
* Public() keys/get
* Signer.Sign() keys/sign
* Decrypter.Decrypt() keys/decrypt