Skip to content

Instantly share code, notes, and snippets.

View vishnups1's full-sized avatar
๐Ÿ‘‹

Vishnupradeep vishnups1

๐Ÿ‘‹
  • Yahoo India
  • Bangalore
View GitHub Profile
@vishnups1
vishnups1 / consul.md
Last active February 17, 2020 05:58 — forked from g0t4/glossary.md
Consul and related terms
  • Node - a physical or virtual machine that hosts services
    • Nodes also referred to as members.
    • Examples
      • Your computer
      • An AWS EC2 instance
      • A bare metal machine in your private data center
  • Service - executing software that provides utility via an interface
    • Typically long-lived process listening on a port(s)
    • Examples
  • A web server (nginx, apache, iis)
@vishnups1
vishnups1 / Display_response_header.md
Last active November 2, 2021 17:58 — forked from subfuzion/curl.md
curl POST examples
@vishnups1
vishnups1 / crypto.md
Last active September 6, 2019 15:34 — forked from dreikanter/encrypt_openssl.md
Crypto & Network Security Stuffs

Algorithm Types

Encryption Algorithms       (AES, DES, RSA...)
Authentication Algorithms   (MD5, SHA-256, SHA-512, HMAC ...)

Security

Encryption Types:
Symmentric      Single key (K) will be used for Encryption and Decryption (AES, DES)

Asymmentric Two keys (KU, KR) will be used for Encryption and Decryption (RSA)