rfc3537.py 796 B

12345678910111213141516171819202122232425262728293031323334
  1. #
  2. # This file is part of pyasn1-modules software.
  3. #
  4. # Created by Russ Housley.
  5. #
  6. # Copyright (c) 2019, Vigil Security, LLC
  7. # License: http://snmplabs.com/pyasn1/license.html
  8. #
  9. # SEED Encryption Algorithm in CMS
  10. #
  11. # ASN.1 source from:
  12. # https://www.rfc-editor.org/rfc/rfc4010.txt
  13. #
  14. from pyasn1.type import constraint
  15. from pyasn1.type import univ
  16. from pyasn1_modules import rfc5280
  17. id_alg_HMACwith3DESwrap = univ.ObjectIdentifier('1.2.840.113549.1.9.16.3.11')
  18. id_alg_HMACwithAESwrap = univ.ObjectIdentifier('1.2.840.113549.1.9.16.3.12')
  19. # Update the Algorithm Identifier map in rfc5280.py.
  20. _algorithmIdentifierMapUpdate = {
  21. id_alg_HMACwith3DESwrap: univ.Null(""),
  22. id_alg_HMACwithAESwrap: univ.Null(""),
  23. }
  24. rfc5280.algorithmIdentifierMap.update(_algorithmIdentifierMapUpdate)