Conversation
Get-RsaPublicKeyInfo currently compiles its embedded SevenTiny C# at
runtime via `Add-Type -Language CSharp`. That works fine under stock
pwsh, but in any host that embeds PowerShell as a library (Azure
Functions custom-handler images, embedded SDK hosts, etc.) `$PSHOME`
resolves to the host directory and Roslyn can't find its reference
assemblies — Add-Type throws DirectoryNotFoundException and every
Read-DkimRecord call silently returns empty records.
This commit extracts the C# into Source/SevenTinyRsa/SevenTinyRsa.csproj
and bundles the precompiled SevenTinyRsa.dll alongside the manifest.
DNSHealth.psd1's new RequiredAssemblies entry preloads the type before
the .psm1 runs; Get-RsaPublicKeyInfo's existing
`if (!('SevenTiny.Bantina.Security.RSACommon' -as [type]))` guard then
short-circuits, so the runtime Add-Type fallback stays in place
untouched for any host that doesn't ship the DLL.
Behaviour on a normal pwsh import is unchanged — the type just resolves
to the bundled assembly instead of going through the compile step.
Read-DkimRecord starts working on embedded-PS hosts where it previously
failed silently.
Build pipeline: dotnet build Source/SevenTinyRsa/SevenTinyRsa.csproj
-c Release -o DNSHealth/. build.psd1's CopyDirectories now includes
SevenTinyRsa.dll so Build-Module carries it into Output/DNSHealth/.
Feat/seventinyrsa precompiled
Zacgoose
approved these changes
Jul 2, 2026
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.
No description provided.