404 Page Get!

This commit is contained in:
Bill Niblock 2015-07-15 22:33:38 -04:00
parent dcc02641e4
commit 3db8a07376
2 changed files with 33 additions and 99 deletions

View file

@ -1,40 +1,41 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<title>The Internet Vagabond :: Page Not Found</title> <title>The Internet Vagabond :: Page Not Found</title>
<meta name="description" content="Rants of a wandering techy, in search of <meta name="description" content="Rants of a wandering techy, in search of
truth, knowledge, and a decent ping." /> truth, knowledge, and a decent ping." />
<meta name="author" content="Bill 'Vagabond Azulien' Nibz" /> <meta name="author" content="Bill 'Vagabond Azulien' Nibz" />
<style> <style>
body { body {
position: relative; background-color: #EBEBFA; } position: relative; background-color: #EBEBFA; }
a,a:visited,a:link,a:focus { a,a:visited,a:link,a:focus {
text-decoration: none; } text-decoration: none; }
header { header {
position: fixed; top: 0px; left: 0px; right: 0px; position: fixed; top: 0px; left: 0px; right: 0px;
margin: 0px; padding: 10px; z-index: 5; margin: 0px; padding: 10px; z-index: 5;
background-color: white; background-color: white;
border-bottom: 1px solid lightgrey; border-bottom: 1px solid lightgrey;
box-shadow: 0px 2px 10px -5px blue; } box-shadow: 0px 2px 10px -5px blue; }
#title { #title {
float: left; list-style: none; margin: 0px 25px; padding: 0px; } float: left; list-style: none; margin: 0px 25px; padding: 0px; }
#title li { #title li {
float:left; margin: 0px; padding: 0px; float:left; margin: 0px; padding: 0px;
font: 1.2em "Lucida Sans Unicode", "Lucida Grande", sans-serif; font: 1.2em "Lucida Sans Unicode", "Lucida Grande", sans-serif;
text-shadow: 2px 2px #DEDEDE; color: darkgrey; letter-spacing: 1.2em; } text-shadow: 2px 2px #DEDEDE; color: darkgrey;
#title li::first-letter { letter-spacing: 1.2em; }
margin: 0px; padding: 0px 2px; #title li::first-letter {
font: 1.3em "Lucida Sans Unicode", "Lucida Grande", sans-serif; margin: 0px; padding: 0px 2px;
color: white; text-shadow: 0px 0px 10px blue; } font: 1.3em "Lucida Sans Unicode", "Lucida Grande", sans-serif;
footer { color: white; text-shadow: 0px 0px 10px blue; }
position: fixed; right: 0px; bottom: 10px; footer {
font: 0.9em "Lucida Sans Unicode", "Lucida Grande", sans-serif; position: fixed; right: 0px; bottom: 10px;
letter-spacing: 0.4em; color: grey; } font: 0.9em "Lucida Sans Unicode", "Lucida Grande", sans-serif;
article { letter-spacing: 0.4em; color: grey; }
margin: auto auto; padding: 50px; text-align: center; } article {
</style> margin: auto auto; padding: 50px; text-align: center; }
</style>
</head> </head>
<body> <body>

View file

@ -1,67 +0,0 @@
---
layout: default
tabtitle: An Examination of TLS, Part 2
title: An Examination of TLS, Part 2
tags: tech
---
<article>
<h1>TLS: An examination into the Security of the Internet, Part 2</h1>
<h2>Certificates</h2>
A certificate is a vessel for a server to provide authentication informat
<h2>Cipher Suites</h2>
A cipher is the algorithm used to encrypt the information to be transmitted.
<h2>Public-Key Authentication</h2>
Big topic, very important
</article>
<!-- ================================= -->
<!-- ================================= -->
<!-- Notes (because why remove them?)
Asymmetric Key Authentication:
- Relies on two keys: Public key, Private key
- Both keys are related, but impossible (computationally infeasable) to
identify the private key based on the public key [1][2]
- The public key can be distributed publicly
- Used to encrypt message to the owner of the private paired key
- Used to verify signatures from the private key
- The private key is kept secret
- Used to decrypt message from the public paired key
- Used to as a digital signature
Basics of an Asymmetric Key handshake:
1. Client reaches out to server, requesting a secure connection
2. Server acknowledges request, sends back it's public key
- This is commonly known as a certificate. Often signed by a
third-party to ensure it is what it's supposed to be.
3. Client uses this public key to encrypt a secret, and sends the package
back to the server.
4. The server then uses it's private key to decrypt the public-key
encrypted secret, and uses that secret hence forth to encrypt all traffic.
5. A private connection is now established.
Basics of Certificates
1. A certificate is a vessel for a server to provide authentication
information.
2. Typically a certificate will contain the following information:
- A UUID of the certificate itself
- The subject of the certificate
- The signature, and signature algorithm used
- The issuer of the certificate, as well as dates when it is valid
- The purpose of the key
- The thumbprint, and algorithm, used to hash the key
- The public key itself
3. Certificate Authorities act as a third part to verify the integrity of
public keys.
-->
<!-- ================================= -->
<!-- ================================= -->