10f9eca23cc86eeaf5888fd23bd473749c298199
				
			
			
		
	㊙️ Go secret
Package secret provides a simple interface for fetching secrets from a secrets provider.
The basic interface is:
type Provider interface {
	GetSecret(key string) (value []byte, err error)
}
📖 Providers
This package is targeting the following secrets providers:
- Environment variables
 - Environment variables files
 - AWS Key Management Service (KMS)
 - AWS Session Manager Parameter Store
 - Azure Key Vault
 - GCP Secret Manager
 - Hashicorp Vault
 - Keyring: Linux
 - Keyring: macOS Keychain Access
 - Keyring: Windows SecretStore
 
🔓 Decryption
The secret provider may return encrypted values, which can be transparently descrypted by this package.
Supported decryption methods:
AES-GCM(AES-128-GCM,AES-256-GCM) Authenticated Encryption with Associated DataRSA-OAEPOptimal Asymmetric Encryption Padding (RFC8017)RSA-PKCS#1version 1.5 (RFC2313)ChaCha20-Poly1305andXChaCha20-Poly1305Authenticated Encryption with Associated Data (RFC8439)NaCL SecretboxSecret-key authenticated encryption
					Languages
				
				
								
								
									Go
								
								92.2%
							
						
							
								
								
									PowerShell
								
								5.3%
							
						
							
								
								
									Shell
								
								2.5%