1
2
3
4
5
6
7
8
9
10
11
12
| ## This file is part of Scapy
| ## See http://www.secdev.org/projects/scapy for more informations
| ## Copyright (C) Philippe Biondi <phil@secdev.org>
| ## This program is published under a GPLv2 license
|
| """
| Package holding ASN.1 related modules.
| """
|
| # We do not import mib.py because it is more bound to scapy and
| # less prone to be used in a standalone fashion
| __all__ = ["asn1","ber"]
|
|