Skip to content

Commit 0249b77

Browse files
committed
added copyright message
1 parent b8d6c63 commit 0249b77

13 files changed

+27
-2
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2016 willem
3+
Copyright (c) 2016 Willem Hengeveld <itsme@xs4all.nl>
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

PdfEncryptionTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
/*
22
* use itext to decrypt the pdf
3+
*
4+
* Copyright (c) 2016 Willem Hengeveld <itsme@xs4all.nl>
35
*/
46
import com.itextpdf.io.font.FontConstants;
57
import com.itextpdf.kernel.crypto.CryptoUtil;

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,3 +158,5 @@ Instead of `cat wordlist.txt` you can use JohnTheRipper for password generation
158158
john --wordlist=dict.txt --rules --stdout" | ./openssl_pass_crack ....
159159

160160

161+
162+
Copyright (c) 2016 Willem Hengeveld <itsme@xs4all.nl>

certparse.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
"""
22
parse various types of pkcsX.X asn1-DER encoded objects
3+
4+
Copyright (c) 2016 Willem Hengeveld <itsme@xs4all.nl>
35
"""
46
from __future__ import division, print_function
57
from der_decoder import *

decryptpdf.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
99
python3 decryptpdf.py encryptedWithCertificateAes128.pdf test.p12 kspass
1010
11+
Copyright (c) 2016 Willem Hengeveld <itsme@xs4all.nl>
1112
"""
1213
from binascii import *
1314
from pdfparser import parsepdf, PdfOperator

der_decoder.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
""" functions for decoding DER encoded objects """
1+
"""
2+
Functions for decoding DER encoded objects
3+
4+
Copyright (c) 2016 Willem Hengeveld <itsme@xs4all.nl>
5+
"""
26
import struct
37
def get_int8(b): return struct.unpack(">B", b)[0]
48
def get_int16(b): return struct.unpack(">H", b)[0]

openssl_des3_perftest.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
/*
22
* A simple performance test for openssl Triple-DES
3+
*
4+
* Copyright (c) 2016 Willem Hengeveld <itsme@xs4all.nl>
35
*/
46
#include <stdint.h>
57
#include <unistd.h>

openssl_pass_crack.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
*
44
* This takes the salt + target value, and then tries all words read from stdin
55
* as password.
6+
*
7+
* Copyright (c) 2016 Willem Hengeveld <itsme@xs4all.nl>
68
*/
79
#include <stdint.h>
810
#include <unistd.h>

openssl_pkcs12_perftest.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
/*
22
* A simple performance test for openssl PKCS12 key generation
3+
*
4+
* Copyright (c) 2016 Willem Hengeveld <itsme@xs4all.nl>
35
*/
46
#include <stdint.h>
57
#include <unistd.h>

openssl_rc2_crack.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
* A simple brute force RC2 cracker.
33
*
44
* Trying all 40 bit values in about 1.5 days on my 2013 macbookpro
5+
*
6+
* Copyright (c) 2016 Willem Hengeveld <itsme@xs4all.nl>
57
*/
68
#include <stdint.h>
79
#include <unistd.h>

openssl_sha1_perftest.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
/*
22
* A simple performance test for openssl SHA1 hash iteration
3+
*
4+
* Copyright (c) 2016 Willem Hengeveld <itsme@xs4all.nl>
35
*/
46
#include <stdint.h>
57
#include <unistd.h>

pdfparser.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
"""
22
Simple pdf parser
3+
4+
Copyright (c) 2016 Willem Hengeveld <itsme@xs4all.nl>
35
"""
46
from __future__ import print_function
57
import binascii

pkcs12_crypto.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
"""
22
PKCS12 password algorithm
3+
4+
Copyright (c) 2016 Willem Hengeveld <itsme@xs4all.nl>
35
"""
46
from __future__ import division, print_function
57
from Crypto.Hash import SHA as SHA1

0 commit comments

Comments
 (0)