Skip to content

Commit defd7f4

Browse files
committed
4.0.0
1 parent 7cadb2d commit defd7f4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+9028
-2665
lines changed

.gitignore

+1-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ dist/
1414
downloads/
1515
eggs/
1616
.eggs/
17-
lib/
1817
lib64/
1918
parts/
2019
sdist/
@@ -30,7 +29,6 @@ MANIFEST
3029
# Usually these files are written by a python script from a template
3130
# before PyInstaller builds the exe, so as to inject date/other infos into it.
3231
*.manifest
33-
*.spec
3432

3533
# Installer logs
3634
pip-log.txt
@@ -150,3 +148,4 @@ cython_debug/
150148
# and can be added to the global gitignore or merged into this file. For a more nuclear
151149
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
152150
#.idea/
151+
testing/

Certipy.spec

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# -*- mode: python ; coding: utf-8 -*-
2+
3+
4+
block_cipher = None
5+
6+
7+
a = Analysis(
8+
['certipy\\entry.py'],
9+
pathex=[],
10+
binaries=[],
11+
datas=[],
12+
hiddenimports=[],
13+
hookspath=[],
14+
hooksconfig={},
15+
runtime_hooks=[],
16+
excludes=[],
17+
win_no_prefer_redirects=False,
18+
win_private_assemblies=False,
19+
cipher=block_cipher,
20+
noarchive=False,
21+
)
22+
pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher)
23+
24+
exe = EXE(
25+
pyz,
26+
a.scripts,
27+
a.binaries,
28+
a.zipfiles,
29+
a.datas,
30+
[],
31+
name='Certipy',
32+
debug=False,
33+
bootloader_ignore_signals=False,
34+
strip=False,
35+
upx=True,
36+
upx_exclude=[],
37+
runtime_tmpdir=None,
38+
console=True,
39+
disable_windowed_traceback=False,
40+
argv_emulation=False,
41+
target_arch=None,
42+
codesign_identity=None,
43+
entitlements_file=None,
44+
)

README.md

+304-170
Large diffs are not rendered by default.

certipy/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)