Florian Cäsar
04/08/2021, 6:26 PMI'm curious about your company, Nanopay. How does its tamper-resistance & security compare to databases with strong access control & audit logs?@Kevin Greer replied:
If your audit logs are cryptographically signed by some kind of notarization service, then they are almost the same. The only difference is that the database would still load data from the database, so if you could corrupt the database then you might be still able to make off with the money, even if the logs were tamper resistant. In our system the audit logs are the database, so it isn't possible for the database and the audit log to get out of sync. Audit logs help figure out what happened after the fact, but often, that may be too late. Also, I'm not aware of any database which has sufficiently advanced access control mechanisms to fully implement the kinds of access controls that we have/require (not just ACLs, but also limits, structuring, AML, KYC, sanctions, risk exposure, maker/checker, compliance document expiry, etc.) We store all of these rules in the blockchain as well, so that they are as tamper resistant as the transactions themselves. When crypto-exchanges are broken into, it is never the crypto that is broken, but instead the surrounding infrastructure and meta-data, but we store everything in the blockchain, which helps to avoid that problem.Hmm, I can see where you're going, but I don't fully understand yet. Specifically: 1. "if you could corrupt the database then you might be still able to make off with the money": By corrupt you mean obtaining access to? 2. "In our system the audit logs are the database, so it isn't possible for the database and the audit log to get out of sync." does that mean the state is derived from the audit logs (like in a blockchain)? What prevents me from fudging with the audit logs? 3. Overall I don't quite get yet what makes this more temper-resistant than just signing and storing all events. Ultimately, if I can access & manipulate the data (logs, events, actual database state, whatever) somehow, it's not really tamper-proof. From my understanding, public blockchains get their tamper-resistance by being publicly distributed and making it very expensive to overrule consensus state (in terms of economic and social costs). Maybe my confusion is how you translate that aspect to a private, centralised blockchain?
Ivan Reese