This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'openssl' | |
require "yaml" | |
require "base64" | |
# | |
# Simple hybrid crypto class using RSA for public key encryption and AES with CBC | |
# for bulk data encryption/decryption. | |
# | |
# RSA is used to encrypt the AES primitives which are used to encrypt the plaintext. | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
=begin | |
Arachni | |
Copyright (c) 2010-2011 Tasos "Zapotek" Laskos <[email protected]> | |
This is free software; you can copy and distribute and modify | |
this program under the term of the GPL v2.0 License | |
(See LICENSE file for details) | |
=end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Gets the reverse diff (strings that have not changed) between 2 strings | |
# | |
# | |
# text1 = <<END | |
# This is the first test. | |
# Not really sure what else to put here... | |
# END | |
# | |
# text2 = <<END |
NewerOlder