Version 0.3.5, Rev830, Full Tor mode support with hidden services, Onion stats in Sidebar, GeoDB download fix using Tor, Gray out disabled sites in Stats page, Tor hidden service status in stat page, Benchmark sha256, Skyts tracker out expodie in, 2 new tracker using ZeroNet protocol, Keep SSL cert option between restarts, SSL Certificate pinning support for connections, Site lock support for connections, Certificate pinned connections using implicit SSL, Flood protection whitelist support, Foreign keys support for DB layer, Not support for SQL query helper, 0 length file get bugfix, Pex onion address support, Faster port testing, Faster uPnP port opening, Need connections more often on owned sites, Delay ZeroHello startup message if port check or Tor manager not ready yet, Use lockfiles to avoid double start, Save original socket on proxy monkey patching to get ability to connect localhost directly, Handle atomic write errors, Broken gevent https workaround helper, Rsa crypt functions, Plugin to Bootstrap using ZeroNet protocol
This commit is contained in:
parent
c9578e9037
commit
e9d2cdfd37
99 changed files with 9476 additions and 267 deletions
68
src/lib/pyasn1/README
Normal file
68
src/lib/pyasn1/README
Normal file
|
@ -0,0 +1,68 @@
|
|||
|
||||
ASN.1 library for Python
|
||||
------------------------
|
||||
|
||||
This is an implementation of ASN.1 types and codecs in Python programming
|
||||
language. It has been first written to support particular protocol (SNMP)
|
||||
but then generalized to be suitable for a wide range of protocols
|
||||
based on ASN.1 specification.
|
||||
|
||||
FEATURES
|
||||
--------
|
||||
|
||||
* Generic implementation of ASN.1 types (X.208)
|
||||
* Fully standard compliant BER/CER/DER codecs
|
||||
* 100% Python, works with Python 2.4 up to Python 3.3 (beta 1)
|
||||
* MT-safe
|
||||
|
||||
MISFEATURES
|
||||
-----------
|
||||
|
||||
* No ASN.1 compiler (by-hand ASN.1 spec compilation into Python code required)
|
||||
* Codecs are not restartable
|
||||
|
||||
INSTALLATION
|
||||
------------
|
||||
|
||||
The pyasn1 package uses setuptools/distutils for installation. Thus do
|
||||
either:
|
||||
|
||||
$ easy_install pyasn1
|
||||
|
||||
or
|
||||
|
||||
$ tar zxf pyasn1-0.1.3.tar.gz
|
||||
$ cd pyasn1-0.1.3
|
||||
$ python setup.py install
|
||||
$ cd test
|
||||
$ python suite.py # run unit tests
|
||||
|
||||
OPERATION
|
||||
---------
|
||||
|
||||
Perhaps a typical use would involve [by-hand] compilation of your ASN.1
|
||||
specification into pyasn1-backed Python code at your application.
|
||||
|
||||
For more information on pyasn1 APIs, please, refer to the
|
||||
doc/pyasn1-tutorial.html file in the distribution.
|
||||
|
||||
Also refer to example modules. Take a look at pyasn1-modules package -- maybe
|
||||
it already holds something useful to you.
|
||||
|
||||
AVAILABILITY
|
||||
------------
|
||||
|
||||
The pyasn1 package is distributed under terms and conditions of BSD-style
|
||||
license. See LICENSE file in the distribution. Source code is freely
|
||||
available from:
|
||||
|
||||
http://pyasn1.sf.net
|
||||
|
||||
|
||||
FEEDBACK
|
||||
--------
|
||||
|
||||
Please, send your comments and fixes to mailing lists at project web site.
|
||||
|
||||
=-=-=
|
||||
mailto: ilya@glas.net
|
Loading…
Add table
Add a link
Reference in a new issue