concealer 0.9.12__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- concealer-0.9.12/.gitignore +33 -0
- concealer-0.9.12/CHANGELOG.md +784 -0
- concealer-0.9.12/LICENSE +21 -0
- concealer-0.9.12/PKG-INFO +350 -0
- concealer-0.9.12/README.md +308 -0
- concealer-0.9.12/concealer +3252 -0
- concealer-0.9.12/concealer_win.py +119 -0
- concealer-0.9.12/packaging/pypi/pkg_init.py +7 -0
- concealer-0.9.12/packaging/winget/README.md +42 -0
- concealer-0.9.12/pyproject.toml +69 -0
- concealer-0.9.12/webui.html +2367 -0
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# ============================================================
|
|
2
|
+
# VAULT VERISI - ASLA COMMIT ETME (public repo)
|
|
3
|
+
# age private key, master.json, audit.key/log, pubkey:
|
|
4
|
+
keys/
|
|
5
|
+
# kullanicinin gercek sifreli secret'lari:
|
|
6
|
+
secrets.enc.yaml
|
|
7
|
+
secrets.enc.json
|
|
8
|
+
# vault'a ozel age recipient (public key):
|
|
9
|
+
.sops.yaml
|
|
10
|
+
# ============================================================
|
|
11
|
+
# Gecici / uretilen
|
|
12
|
+
__pycache__/
|
|
13
|
+
*.pyc
|
|
14
|
+
*.age.new
|
|
15
|
+
.impeccable/
|
|
16
|
+
.claude/
|
|
17
|
+
keys/agents.json
|
|
18
|
+
keys/recovery.json
|
|
19
|
+
keys/audit.head
|
|
20
|
+
keys/ratestate.json
|
|
21
|
+
keys/backup.json
|
|
22
|
+
|
|
23
|
+
*.code-workspace
|
|
24
|
+
.DS_Store
|
|
25
|
+
|
|
26
|
+
# docs local preview (Jekyll build output + per-machine gem lock)
|
|
27
|
+
docs/_site/
|
|
28
|
+
docs/.jekyll-cache/
|
|
29
|
+
docs/.jekyll-metadata
|
|
30
|
+
docs/Gemfile.lock
|
|
31
|
+
# CI capture scratch
|
|
32
|
+
packaging/ci/_demo/
|
|
33
|
+
win-artifacts/
|