Source code for pcapkit.vendor.hip.certificate

# -*- coding: utf-8 -*-
"""HIP Certificate Types"""

from pcapkit.vendor.default import Vendor

__all__ = ['Certificate']


[docs]class Certificate(Vendor): """HIP Certificate Types""" #: Value limit checker. FLAG = 'isinstance(value, int) and 0 <= value <= 255' #: Link to registry. LINK = 'https://www.iana.org/assignments/hip-parameters/certificate-types.csv'
if __name__ == "__main__": Certificate()