Source code for pcapkit.vendor.hip.cipher

# -*- coding: utf-8 -*-
"""HIP Cipher IDs"""

from pcapkit.vendor.default import Vendor

__all__ = ['Cipher']


[docs]class Cipher(Vendor): """Cipher IDs""" #: Value limit checker. FLAG = 'isinstance(value, int) and 0 <= value <= 65535' #: Link to registry. LINK = 'https://www.iana.org/assignments/hip-parameters/hip-cipher-id.csv'
if __name__ == "__main__": Cipher()