rfc6120.py 818 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. # Extensible Messaging and Presence Protocol (XMPP)
  10. #
  11. # ASN.1 source from:
  12. # https://www.rfc-editor.org/rfc/rfc6120.txt
  13. #
  14. from pyasn1.type import char
  15. from pyasn1.type import univ
  16. from pyasn1_modules import rfc5280
  17. MAX = float('inf')
  18. # XmppAddr Identifier Type as specified in Section 13.7.1.4. of RFC 6120
  19. id_pkix = rfc5280.id_pkix
  20. id_on = id_pkix + (8, )
  21. id_on_xmppAddr = id_on + (5, )
  22. class XmppAddr(char.UTF8String):
  23. pass
  24. # Map of Other Name OIDs to Other Name is added to the
  25. # ones that are in rfc5280.py
  26. _anotherNameMapUpdate = {
  27. id_on_xmppAddr: XmppAddr(),
  28. }
  29. rfc5280.anotherNameMap.update(_anotherNameMapUpdate)