Merged
Conversation
Change from pointer receiver to value receiver to fix compilation error in mapping.go where mock.Validate() is called on a value type. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
Resolves #116 This feature allows mmock to work with encrypted TLS private key files by adding support for password authentication. Features added: - New --tls-key-password command line flag for specifying key password - Environment variable MMOCK_TLS_KEY_PASSWORD for secure password input - Automatic fallback to standard loading for unencrypted keys - Support for multiple private key formats (PKCS#1, PKCS#8, EC) - Comprehensive error handling with descriptive messages Usage examples: mmock --tls-key-password mypassword MMOCK_TLS_KEY_PASSWORD=mypassword mmock 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Changes Made
--tls-key-passwordcommand line flagMMOCK_TLS_KEY_PASSWORDenvironment variable supportUsage Examples
```bash
Using command line flag
mmock --tls-key-password mypassword
Using environment variable (recommended for containers)
MMOCK_TLS_KEY_PASSWORD=mypassword mmock
Existing unencrypted keys work unchanged
mmock
```
Test Plan