summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorIlya Etingof <etingof@gmail.com>2018-02-19 00:41:28 +0100
committerIlya Etingof <etingof@gmail.com>2018-02-19 00:41:28 +0100
commit24a7988766551038be2c65a33f10173a7a6d559d (patch)
tree60fbb40e681f20579611e83e6a2d445d27076bfb /docs
parentbc2654205b7b566bd4e2caa8c5c703ec03a140a0 (diff)
downloadpysnmp-git-24a7988766551038be2c65a33f10173a7a6d559d.tar.gz
strong crypto moved to pysnmpcrypto
Diffstat (limited to 'docs')
-rw-r--r--docs/source/docs/pysnmp-architecture.rst2
-rw-r--r--docs/source/download.rst19
2 files changed, 9 insertions, 12 deletions
diff --git a/docs/source/docs/pysnmp-architecture.rst b/docs/source/docs/pysnmp-architecture.rst
index 4256e12c..020cc5a5 100644
--- a/docs/source/docs/pysnmp-architecture.rst
+++ b/docs/source/docs/pysnmp-architecture.rst
@@ -9,7 +9,7 @@ We can look at PySNMP's internal structure from the view point of
SNMP protocol evolution. SNMP was evolving for many years from
a relatively simple way to structure and retrieve data (SNMPv1/v2c)
all the way to extensible and modularized framework that supports
-strong crypto out-of-the-box (SNMPv3).
+strong SNMPv3 crypto (with optional pysnmpcrypto package).
In the order from most ancient SNMP services to the most current ones,
what follows are different layers of PySNMP APIs:
diff --git a/docs/source/download.rst b/docs/source/download.rst
index 69413e4a..87743486 100644
--- a/docs/source/download.rst
+++ b/docs/source/download.rst
@@ -42,19 +42,16 @@ In case you are installing PySNMP on an off-line system, the following
packages need to be downloaded and installed for PySNMP to become
operational:
-* `PyASN1 <https://pypi.python.org/pypi/pyasn1>`_,
- used for handling ASN.1 objects
-* `PySNMP <https://pypi.python.org/pypi/pysnmp/>`_,
+* `pysnmp <https://pypi.python.org/pypi/pysnmp/>`_,
SNMP engine implementation
-
-Optional, but recommended:
-
-* `PyCryptodomex <https://pypi.python.org/pypi/pycryptodomex/>`_,
- used by SNMPv3 crypto features
-* `PySMI <https://pypi.python.org/pypi/pysmi/>`_ for automatic
+* `pyasn1 <https://pypi.python.org/pypi/pyasn1>`_,
+ used for handling ASN.1 objects
+* `pysmi <https://pypi.python.org/pypi/pysmi/>`_ for automatic
MIB download and compilation. That helps visualizing more SNMP objects
-* `Ply <https://pypi.python.org/pypi/ply/>`_, parser generator
- required by PySMI
+
+Optional:
+* `pysnmpcrypto <https://pypi.python.org/pypi/pysnmpcrypto/>`_,
+ for strong SNMPv3 crypto support
The installation procedure for all the above packages is as follows
(on UNIX-based systems):