Skip to content

Instantly share code, notes, and snippets.

name = raw_input("Welcome to the Legal Hackers intake robot. What is your name? ")
print("Hello, " + name + ", how can we assist you?")
print(" You can INPUT 1 for corporate help.")
print(" You can INPUT 2 for IP help.")
print(" You can INPUT 3 for something else.")
firstInput = raw_input("Please make your selection now: ")
def firstResponse(output):
if firstInput == 1:
# -*- coding: utf-8 -*-
import sys
import os
import base64
import bcrypt
from Crypto import Random
from Crypto.Cipher import AES
from Crypto.Hash import SHA256
class Blockout: