X500DistinguishedName Třída

Definice

Představuje rozlišující název certifikátu X509. Tuto třídu nelze dědit.

public ref class X500DistinguishedName sealed : System::Security::Cryptography::AsnEncodedData
public sealed class X500DistinguishedName : System.Security.Cryptography.AsnEncodedData
type X500DistinguishedName = class
    inherit AsnEncodedData
Public NotInheritable Class X500DistinguishedName
Inherits AsnEncodedData
Dědičnost
X500DistinguishedName

Příklady

Následující příklad kódu ukazuje, jak používat X500DistinguishedName třídu.

#using <System.dll>
#using <system.security.dll>

using namespace System;
using namespace System::Security::Cryptography;
using namespace System::Security::Permissions;
using namespace System::IO;
using namespace System::Security::Cryptography::X509Certificates;
int main()
{
   try
   {
      X509Store ^ store = gcnew X509Store( "MY",StoreLocation::CurrentUser );
      store->Open( static_cast<OpenFlags>(OpenFlags::ReadOnly | OpenFlags::OpenExistingOnly) );
      X509Certificate2Collection ^ collection = dynamic_cast<X509Certificate2Collection^>(store->Certificates);
      X509Certificate2Collection ^ fcollection = dynamic_cast<X509Certificate2Collection^>(collection->Find( X509FindType::FindByTimeValid, DateTime::Now, false ));
      X509Certificate2Collection ^ scollection = X509Certificate2UI::SelectFromCollection(fcollection, "Test Certificate Select","Select a certificate from the following list to get information on that certificate",X509SelectionFlag::MultiSelection);
      Console::WriteLine( "Number of certificates: {0}{1}", scollection->Count, Environment::NewLine );
      System::Collections::IEnumerator^ myEnum = scollection->GetEnumerator();
      while ( myEnum->MoveNext() )
      {
         X509Certificate2 ^ x509 = safe_cast<X509Certificate2 ^>(myEnum->Current);
         X500DistinguishedName ^ dname = gcnew X500DistinguishedName( x509->SubjectName );
         Console::WriteLine( "X500DistinguishedName: {0}{1}", dname->Name, Environment::NewLine );
         x509->Reset();
      }
      store->Close();
   }
   catch ( CryptographicException^ ) 
   {
      Console::WriteLine( "Information could not be written out for this certificate." );
   }

}
using System;
using System.Security.Cryptography;
using System.Security.Permissions;
using System.IO;
using System.Security.Cryptography.X509Certificates;

class X500Sample
{
    static void Main()
    {
        try
        {
            X509Store store = new X509Store("MY", StoreLocation.CurrentUser);
            store.Open(OpenFlags.ReadOnly | OpenFlags.OpenExistingOnly);
            X509Certificate2Collection collection = (X509Certificate2Collection)store.Certificates;
            X509Certificate2Collection fcollection = (X509Certificate2Collection)collection.Find(X509FindType.FindByTimeValid, DateTime.Now, false);
            X509Certificate2Collection scollection = X509Certificate2UI.SelectFromCollection(fcollection, "Test Certificate Select", "Select a certificate from the following list to get information on that certificate", X509SelectionFlag.MultiSelection);
            Console.WriteLine("Number of certificates: {0}{1}", scollection.Count, Environment.NewLine);
            foreach (X509Certificate2 x509 in scollection)
            {
                X500DistinguishedName dname = new X500DistinguishedName(x509.SubjectName);
                Console.WriteLine("X500DistinguishedName: {0}{1}", dname.Name, Environment.NewLine);
                x509.Reset();
            }
            store.Close();
        }
        catch (CryptographicException)
        {
            Console.WriteLine("Information could not be written out for this certificate.");
        }
    }
}
Imports System.Security.Cryptography
Imports System.Security.Permissions
Imports System.IO
Imports System.Security.Cryptography.X509Certificates



Class X500Sample
   Shared msg As String
   Shared Sub Main()
    
      Try
         Dim store As New X509Store("MY", StoreLocation.CurrentUser)
         store.Open((OpenFlags.ReadOnly Or OpenFlags.OpenExistingOnly))
         Dim collection As X509Certificate2Collection = CType(store.Certificates, X509Certificate2Collection)
         Dim fcollection As X509Certificate2Collection = CType(collection.Find(X509FindType.FindByTimeValid, DateTime.Now, False), X509Certificate2Collection)
         Dim scollection As X509Certificate2Collection = X509Certificate2UI.SelectFromCollection(fcollection, "Test Certificate Select", "Select a certificate from the following list to get information on that certificate", X509SelectionFlag.MultiSelection)
     msg = "Number of certificates: " & scollection.Count & Environment.NewLine
     MsgBox(msg)
         Dim x509 As X509Certificate2
         For Each x509 In  scollection
            Dim dname As New X500DistinguishedName(x509.SubjectName)
        msg = "X500DistinguishedName: " & dname.Name & Environment.NewLine
     MsgBox(msg)
            x509.Reset()
         Next x509
         store.Close()
     Catch e As Exception
            msg = "Error: Information could not be written out for this certificate."
            MsgBox(msg)
      End Try
   End Sub
End Class

Poznámky

Tato třída se podobá rozšíření SubjectName nebo IssuerName vlastnosti, což je jméno osoby nebo entity, pro kterou je certifikát vystaven. X.500 je mezinárodní standard pro distribuované adresářové služby. Rozlišující název používá následující formát:

[X500:/C=CountryCode/O=Organization/OU=OrganizationUnit/CN=CommonName]

Platí následující limity délky polí:

Pole Limit délky
CountryCode 2 znaky
Organizace Až 64 znaků
OrganizaceUnit Až 32 znaků
CommonName Až 64 znaků

Platí následující pokyny:

  • Hodnoty polí můžou být velká nebo malá písmena.

  • Oddělovače jsou značky lomítek (/) a musí se objevit před první hodnotou a mezi následujícími hodnotami.

  • Oddělovače můžou následovat mezerou.

Následuje příklad správně formátovaného názvu: [X500:/ C=US/ O=Microsoft/ OU=WGA/ CN=TedSt]

Konstruktory

X500DistinguishedName(AsnEncodedData)

Inicializuje novou instanci X500DistinguishedName třídy pomocí zadaného AsnEncodedData objektu.

X500DistinguishedName(Byte[])

Inicializuje novou instanci X500DistinguishedName třídy pomocí informací ze zadaného bajtového pole.

X500DistinguishedName(ReadOnlySpan<Byte>)

Inicializuje novou instanci X500DistinguishedName třídy pomocí informací z poskytnutých dat.

X500DistinguishedName(String)

Inicializuje novou instanci X500DistinguishedName třídy pomocí informací ze zadaného řetězce.

X500DistinguishedName(String, X500DistinguishedNameFlags)

Inicializuje novou instanci X500DistinguishedName třídy pomocí zadaného řetězce a X500DistinguishedNameFlags příznaku.

X500DistinguishedName(X500DistinguishedName)

Inicializuje novou instanci X500DistinguishedName třídy pomocí zadaného X500DistinguishedName objektu.

Vlastnosti

Name

Získá rozlišující název čárkami od certifikátu X500.

Oid

Získá nebo nastaví Oid hodnotu objektu AsnEncodedData .

(Zděděno od AsnEncodedData)
RawData

Získá nebo nastaví abstraktní syntaxe Notation One (ASN.1) kódovaná data reprezentovaná v bajtovém poli.

(Zděděno od AsnEncodedData)

Metody

CopyFrom(AsnEncodedData)

Zkopíruje informace z objektu AsnEncodedData .

(Zděděno od AsnEncodedData)
Decode(X500DistinguishedNameFlags)

Dekóduje rozlišující název pomocí charakteristik určených parametrem flag .

Equals(Object)

Určí, zda se zadaný objekt rovná aktuálnímu objektu.

(Zděděno od Object)
Format(Boolean)

Vrátí formátovanou verzi rozlišujícího názvu X500 pro tisk nebo výstup do textového okna nebo konzoly.

GetHashCode()

Slouží jako výchozí funkce hash.

(Zděděno od Object)
GetType()

Type Získá aktuální instanci.

(Zděděno od Object)
MemberwiseClone()

Vytvoří použádnou kopii aktuálního souboru Object.

(Zděděno od Object)
ToString()

Vrátí řetězec, který představuje aktuální objekt.

(Zděděno od Object)

Platí pro