-
-
Notifications
You must be signed in to change notification settings - Fork 590
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add private / public key generation utils which comply with new requi…
…rements on Mac OS 10.15 (#160) * Add utilities to generate private key and public keys with alternate cnames * Add separate package proxy.py-plugins, fixes #156 * Generate certificates to comply with Mac requirements. * Add utility for CSR generation and signing * Fixes #161 * Add initial pki tests
- Loading branch information
1 parent
93d8a55
commit 0cc4e5e
Showing
13 changed files
with
403 additions
and
19 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,5 +2,3 @@ tsbuild | |
node_modules | ||
build | ||
dist | ||
|
||
proxy.py_dashboard.egg-info |
File renamed without changes.
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# Proxy.py Plugins |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
# -*- coding: utf-8 -*- | ||
""" | ||
proxy.py | ||
~~~~~~~~ | ||
⚡⚡⚡ Fast, Lightweight, Programmable, TLS interception capable | ||
proxy server for Application debugging, testing and development. | ||
:copyright: (c) 2013-present by Abhinav Singh and contributors. | ||
:license: BSD, see LICENSE for more details. | ||
""" | ||
from setuptools import setup, find_packages | ||
|
||
from proxy.common.constants import __author__, __author_email__ | ||
from proxy.common.constants import __homepage__, __description__, __download_url__, __license__ | ||
|
||
VERSION = (0, 1, 0) | ||
__version__ = '.'.join(map(str, VERSION[0:3])) | ||
|
||
setup( | ||
name='proxy.py-plugins', | ||
version=__version__, | ||
author=__author__, | ||
author_email=__author_email__, | ||
url=__homepage__, | ||
description=__description__, | ||
long_description=open('README.md').read().strip(), | ||
long_description_content_type='text/markdown', | ||
download_url=__download_url__, | ||
license=__license__, | ||
packages=find_packages(), | ||
install_requires=['proxy.py'], | ||
classifiers=[ | ||
'Development Status :: 5 - Production/Stable', | ||
'Environment :: Console', | ||
'Environment :: No Input/Output (Daemon)', | ||
'Environment :: Web Environment', | ||
'Environment :: MacOS X', | ||
'Environment :: Plugins', | ||
'Environment :: Win32 (MS Windows)', | ||
'Framework :: Robot Framework', | ||
'Framework :: Robot Framework :: Library', | ||
'Intended Audience :: Developers', | ||
'Intended Audience :: Education', | ||
'Intended Audience :: End Users/Desktop', | ||
'Intended Audience :: System Administrators', | ||
'Intended Audience :: Science/Research', | ||
'License :: OSI Approved :: BSD License', | ||
'Natural Language :: English', | ||
'Operating System :: MacOS', | ||
'Operating System :: MacOS :: MacOS 9', | ||
'Operating System :: MacOS :: MacOS X', | ||
'Operating System :: POSIX', | ||
'Operating System :: POSIX :: Linux', | ||
'Operating System :: Unix', | ||
'Operating System :: Microsoft', | ||
'Operating System :: Microsoft :: Windows', | ||
'Operating System :: Microsoft :: Windows :: Windows 10', | ||
'Operating System :: Android', | ||
'Operating System :: OS Independent', | ||
'Programming Language :: Python :: Implementation', | ||
'Programming Language :: Python :: 3 :: Only', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
'Programming Language :: Python :: 3.9', | ||
'Topic :: Internet', | ||
'Topic :: Internet :: Proxy Servers', | ||
'Topic :: Internet :: WWW/HTTP', | ||
'Topic :: Internet :: WWW/HTTP :: Browsers', | ||
'Topic :: Internet :: WWW/HTTP :: Dynamic Content', | ||
'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries', | ||
'Topic :: Internet :: WWW/HTTP :: HTTP Servers', | ||
'Topic :: Scientific/Engineering :: Information Analysis', | ||
'Topic :: Software Development :: Debuggers', | ||
'Topic :: Software Development :: Libraries :: Python Modules', | ||
'Topic :: System :: Monitoring', | ||
'Topic :: System :: Networking', | ||
'Topic :: System :: Networking :: Firewalls', | ||
'Topic :: System :: Networking :: Monitoring', | ||
'Topic :: Utilities', | ||
'Typing :: Typed', | ||
], | ||
) |
This file contains 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
Oops, something went wrong.