Scripting gpg with Go
Written by Jiří Keresteš on 2020-01-23
pgpSometimes, you just need to use gpg
from a script. There's a couple
of ways to achieve your goals, and a lot of dead ends. Read on to learn more!
Written by Jiří Keresteš on 2020-01-23
pgpSometimes, you just need to use gpg
from a script. There's a couple
of ways to achieve your goals, and a lot of dead ends. Read on to learn more!
Written by Dominik Joe Pantůček on 2020-01-16
racketModern systems have become increasingly complex since the beginning of the computing revolution. As these systems are programmed by humans, it is really easy to create systems with erroneous behavior. A well-documented code lowers the risks of introducing bugs in the programs - which should be something to always aim to. Read on to see how we here at Trustica approach this problem.
Written by Dominik Joe Pantůček on 2020-01-09
racketIn one of our projects, we needed to write an HTTP application server in Racket. In this application server we needed to route HTTP requests to various methods of various modules. Read on how we slightly modified a simple syntax helper to ease this task for us.
Written by Dominik Joe Pantůček on 2020-01-02
racketDeveloping a cryptographic solution means that the algorithm correctness is not an option. Not just for the hardware, firmware and application software, but also for manufacturing support software. Read on to see how we address this need.
Written by Dominik Joe Pantůček on 2019-12-26
racketSometimes you are using a high-level language and you need to access low-level features of some library. And sometimes you do not have all the information required. But luckily, there are ways to overcome such lack of information. Read on to find out how we do that in Racket.