I hereby claim:
- I am perhapssomeone on github.
- I am privateger (https://keybase.io/privateger) on keybase.
- I have a public key ASDD5QXqwJcqQ8Jz9enNuOjxC9XdwhyrQAKHEqynKj-XNwo
To claim this, I am signing this object:
| defmodule M do | |
| require Integer | |
| import :math, only: [sqrt: 1] | |
| def main do | |
| IO.puts("Generating large primes...") | |
| IO.puts "Nummer: #{generate_large_number()}" |
| const download = require('download-file'); | |
| const request = require('request'); | |
| const colors = require("colors"); | |
| const path = require("path"); | |
| const download_directory = "./download/"; |
| require 'rubygems' | |
| require 'json' | |
| require 'net/http' | |
| require 'time' | |
| $old_id = 0 | |
| $total_length = 0 | |
| $rant_count = 0 | |
| def restore_data |
I hereby claim:
To claim this, I am signing this object:
| file = File.open("Textfile.txt", "w") | |
| file.puts "Sample Textfile" | |
| file.close |
| require 'aes' | |
| require "base64" | |
| def fileEncrypt(file, key) | |
| handler = File.open(file, 'rb') | |
| data = handler.read | |
| handler.close | |
| writefile = File.open(file, "wb") | |
| encryptedContent = AES.encrypt(data, key) | |
| writefile.puts encryptedContent |
| <?php | |
| $filehandle = fopen("myfile.txt","w"); | |
| fwrite($filehandle,"EasyCoding is cool!"); | |
| $filecontent = file_get_contents("myfile.txt"); | |
| echo $filecontent; | |
| fclose($filehandle); | |
| ?> |
| <html> | |
| <body> | |
| <form action="formhandler.php"> | |
| <input type="text"> | |
| <button type="submit">Submit</button> | |
| </form> | |
| </body> | |
| </html> |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>My beautiful login!</title> | |
| </head> | |
| <body> | |
| <form action="authenticate.php" method="post"> | |
| <input type="text" name="username" required> | |
| <input type="password" name="password" required> | |
| <button type="submit">Login</button> |
| <?php | |
| $sentname = $_POST["username"]; | |
| $sentpassword = $_POST["password"]; | |
| $failed = false; | |
| if ($sentname == "EasyCoding") { | |
| if ($sentpassword == "EasyCodingPW") { | |
| echo "Logged in successfully!"; | |
| //Insert Code to be executed on successful Login here | |
| } |