Files
Lee Chagolla-Christensen 3b4f110686 Async/performance improvement (#83)
* make all enrichment (should)process methods async

* fix office2john resource leak

* check for none

* more resource errors, add ole hash tests, pytest configs

* update chromium to use async pool

* update registry module to use asyncpg pool

* more asyncpg

* use async get_file_enriched

* update sleep

* fix dapr configs, new ones for workflow services

* remove deprecate/redundant httprequestmax setting

* disable workflow tracking (for now)

---------

Co-authored-by: Lee Chagolla-Christensen <lee@localhost>
2025-10-28 15:12:24 -07:00
..
2025-10-02 14:16:18 -07:00
2025-09-24 17:08:26 -07:00
2025-10-17 14:29:45 -07:00

Tests

DPAPI Blobs

Test blobs were created with PowerShell:

Add-Type -AssemblyName System.Security
$data    = [Text.Encoding]::ASCII.GetBytes("test")
$encrypted_no_entropy = [Security.Cryptography.ProtectedData]::Protect($data, $null, 'CurrentUser')

$encrypted_with_entropy = [Security.Cryptography.ProtectedData]::Protect($data, [byte[]](1,2,3,4,5), 'CurrentUser')

Write-Host ("no entropy:`n" + [Convert]::ToBase64String($encrypted_with_entropy))
Write-Host ("`nwith entropy:`n" + [Convert]::ToBase64String($encrypted_with_entropy))