feat(encryption): refactor encryption provider scripts, update KMS integration, and enhance key management

This commit is contained in:
2025-05-12 22:43:42 +02:00
parent 05d1624bdd
commit 15b07ea85d
19 changed files with 497 additions and 39 deletions
+6
View File
@@ -0,0 +1,6 @@
#!/bin/bash
uuid=$(cat /proc/cpuinfo | grep 'model name' | head -1)
uuid+=$(ip link show wlo1 | grep ether | awk '{print $2}')
uuid+=$(sudo dmidecode -s system-uuid)
echo "UUID: $uuid"
echo -n "$uuid" | md5sum | awk '{print $1}'