refactor: cryptography component

This commit is contained in:
Jan
2025-04-25 21:26:44 +01:00
committed by Jan Laupetin
parent 60f5c1a18f
commit 5635470b6e
63 changed files with 550 additions and 723 deletions

View File

@ -9,14 +9,14 @@ function ZoneCommon:include(includes)
Common:include(includes)
ObjCommon:include(includes)
Parser:include(includes)
Crypto:include(includes)
Cryptography:include(includes)
end
end
function ZoneCommon:link(links)
links:add(self:name())
links:linkto(Common)
links:linkto(Crypto)
links:linkto(Cryptography)
links:linkto(ObjCommon)
links:linkto(Parser)
links:linkto(Utils)