List containing files $ ls cert9.db key4.db pkcs11.txt cert9.db SQLite database Certificate store key4.db SQLite database Password store pkcs11.txt Text
Continue readingCategory: Computer
Certificate status checking
A certificate has a specific expiary date and if it got untrusted by the CA in this time (e.g. its
Continue readingThe Pitchfork Layout (C++)
I recently stumbled over ‘The Pitchfork Layout‘ and I know there are so many ways to order your project files,
Continue readingDeclaration specifiers (C++)
The following list is just a selection. Specifier Variable Function const Can’t be modified.1 Method: Can’t modify its fields.1 constexp
Continue readingPosition of Ptr. / Ref. (C++)
There are two common ways for the position of the pointer sign (*) or the reference sign (&). C-Style ClassA
Continue readingWhen and how to pass smart pointer (C++)
This post is based on a post from Herb Sutter. When if (The ownership of the object isn’t shared or
Continue readingToo many cooks spoil the broth
The most important thing I have learned by developing in a quite huge team on the same project over multiple
Continue readingTLS-Handshake and CA
Prerequisites Server – Server certificate (it contains the server public key) – Server private key (to decrypt the pre-master secret)
Continue readingLoading order of a webpage
Basics 1. Fetch the requested HTML file (via HTTP GET). 2. Parse (creating the DOM) that file (using DFS). 3.
Continue readingGarbage collection (Basics)
A garbage collector is a hidden background tool that cleans unused application memory automatically. It’s necessary for languages which aren’t
Continue reading