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
OPENSSL_1.0.0 { | |
global: | |
BIO_f_ssl; | |
BIO_new_buffer_ssl_connect; | |
BIO_new_ssl; | |
BIO_new_ssl_connect; | |
BIO_proxy_ssl_copy_session_id; | |
BIO_ssl_copy_session_id; | |
BIO_ssl_shutdown; | |
d2i_SSL_SESSION; |
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
OPENSSL_1.0.0 { | |
global: | |
BIO_f_ssl; | |
BIO_new_buffer_ssl_connect; | |
BIO_new_ssl; | |
BIO_new_ssl_connect; | |
BIO_proxy_ssl_copy_session_id; | |
BIO_ssl_copy_session_id; | |
BIO_ssl_shutdown; | |
d2i_SSL_SESSION; |
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
from __future__ import print_function | |
import collections | |
import re | |
import random | |
############################################################################## | |
# Program parameters | |
# Path to the text file containing the ciphertext |
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
.model small | |
.stack 1024 | |
.data | |
.code | |
start: | |
mov ax,@data | |
mov ds,ax | |
extrn writesint:proc | |
mov ah,2ch | |
int 21h |