Skip to content

Instantly share code, notes, and snippets.

View ZahidRasheed's full-sized avatar

Zahid Rasheed ZahidRasheed

View GitHub Profile
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="match_parent">
<!-- TextView to welcome users into the app -->
<TextView
android:id="@id/logo_text"
open class AwesomeFragment(var name: String): Fragment(), TextWatcher {
public var textToPrependOnTVAfterTextChanged = "Hello "
init {
// Make sure we don't crash if name is null
name = name ?: ""
}
override fun onCreateView(
@ZahidRasheed
ZahidRasheed / how_to_gen_ssl_cert.md
Created September 21, 2017 17:55 — forked from iansheridan/how_to_gen_ssl_cert.md
How to generate an SSL CSR or self signed SSL certificate

How to generate an SSL CSR or self signed SSL certificate

Overview

The following is an extremely simplified view of how SSL is implemented and what part the certificate plays in the entire process.

Normal web traffic is sent unencrypted over the Internet. That is, anyone with access to the right tools can snoop all of that traffic. Obviously, this can lead to problems, especially where security and privacy is necessary, such as in credit card data and bank transactions. The Secure Socket Layer is used to encrypt the data stream between the web server and the web client (the browser).

SSL makes use of what is known as asymmetric cryptography, commonly referred to as public key cryptography (PKI). With public key cryptography, two keys are created, one public, one private. Anything encrypted with either key can only be decrypted with its corresponding key. Thus if a message or data stream were encrypted with the server's private key, it can be decrypted only using its corresponding public key, ensuring