mirror of
https://github.com/saymrwulf/cryptography.git
synced 2026-05-14 20:37:55 +00:00
* 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:
parent
8d772f5190
commit
bbea31b68d
2 changed files with 7 additions and 0 deletions
|
|
@ -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"``.
|
||||
|
|
|
|||
|
|
@ -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")
|
||||
|
|
|
|||
Loading…
Reference in a new issue