This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
python-rfc3161/rfc3161/constants.py

11 lines
494 B
Python

from pyasn1.type import univ
__all__ = ('id_kp_timeStamping','id_sha1', 'id_sha256', 'id_sha384', 'id_sha512', 'id_ct_TSTInfo',)
id_kp_timeStamping = univ.ObjectIdentifier((1,3,6,1,5,5,7,3,8))
id_sha1 = univ.ObjectIdentifier((1,3,14,3,2,26))
id_sha256 = univ.ObjectIdentifier((2,16,840,1,101,3,4,2,1,))
id_sha384 = univ.ObjectIdentifier((2,16,840,1,101,3,4,2,2,))
id_sha512 = univ.ObjectIdentifier((2,16,840,1,101,3,4,2,3,))
id_ct_TSTInfo = univ.ObjectIdentifier((1,2,840,113549,1,9,16,1,4))