* Fix for #8854

Fix for issue #8854

* Fix for issue #8854

Fix for issue #8854

* versionadded

---------

Co-authored-by: Paul Kehrer <paul.l.kehrer@gmail.com>
This commit is contained in:
Harmin Parra Rueda 2023-05-03 23:34:54 +02:00 committed by GitHub
parent 8d772f5190
commit bbea31b68d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 0 deletions

View file

@ -3034,6 +3034,12 @@ instances. The following common OIDs are available as constants.
Corresponds to the dotted string ``"2.5.4.12"``.
.. attribute:: INITIALS
.. versionadded:: 41.0.0
Corresponds to the dotted string ``"2.5.4.43"``.
.. attribute:: GENERATION_QUALIFIER
Corresponds to the dotted string ``"2.5.4.44"``.

View file

@ -66,6 +66,7 @@ class NameOID:
SURNAME = ObjectIdentifier("2.5.4.4")
GIVEN_NAME = ObjectIdentifier("2.5.4.42")
TITLE = ObjectIdentifier("2.5.4.12")
INITIALS = ObjectIdentifier("2.5.4.43")
GENERATION_QUALIFIER = ObjectIdentifier("2.5.4.44")
X500_UNIQUE_IDENTIFIER = ObjectIdentifier("2.5.4.45")
DN_QUALIFIER = ObjectIdentifier("2.5.4.46")