Skip to content

$using statements require lower case #4

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jan 2, 2023

Conversation

santisq
Copy link
Owner

@santisq santisq commented Jan 2, 2023

Fixes #3

Passing arguments via the stop-parsing token ( --% ) requires that all Keys are lower case.

Updated Line #157 from:

$key = [Convert]::ToBase64String([Encoding]::Unicode.GetBytes($varText))

To:

$key = [Convert]::ToBase64String([Encoding]::Unicode.GetBytes($varText.ToLower()))

@santisq santisq added the bug Something isn't working label Jan 2, 2023
@santisq santisq self-assigned this Jan 2, 2023
@santisq santisq linked an issue Jan 2, 2023 that may be closed by this pull request
@santisq santisq merged commit 4a6b473 into main Jan 2, 2023
@santisq santisq deleted the 3-$using-statements-require-lower-case branch January 2, 2023 14:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging this pull request may close these issues.

$using: statements require lower case
1 participant