Enable Certificate Transparency for HTTPS

erver operators can deliver SCTs by using a special TLS extension (see figure 2). In this case, the CA issues the certificate to the server operator, and the server operator submits the certificate to the log. The log sends the SCT to the server operator, and the server operator uses a TLS extension with type signed_certificate_timestamp to deliver the SCT to the client during the TLS handshake.

Using jsonb on PostgreSQL

jsonb datatype, a specialised representation of the JSON data, allowing PostgreSQL to be competitive in managing the "lingua franca" of the moment for the exchange of data via web services. It is useful to perform a number of tests to…

Create Trigger in PostgreSQL

The trigger will be associated with the specified table, view, or foreign table and will execute the specified function function_name when certain events occur. The trigger can be specified to fire before the operation is attempted on a row (before…