AsnEncodedData 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 AsnEncodedData 类的新实例。
重载
AsnEncodedData() |
初始化 AsnEncodedData 类的新实例。 |
AsnEncodedData(Byte[]) |
使用一个字节数组初始化 AsnEncodedData 类的新实例。 |
AsnEncodedData(ReadOnlySpan<Byte>) |
从现有编码数据初始化 AsnEncodedData 类的新实例。 |
AsnEncodedData(AsnEncodedData) |
使用 AsnEncodedData 类的一个实例初始化 AsnEncodedData 类的新实例。 |
AsnEncodedData(Oid, Byte[]) |
使用一个 AsnEncodedData 对象和一个字节数组初始化 Oid 类的新实例。 |
AsnEncodedData(Oid, ReadOnlySpan<Byte>) |
从对象标识符 (OID) 和现有编码的数据初始化 AsnEncodedData 类的新实例。 |
AsnEncodedData(String, Byte[]) |
使用一个字节数组初始化 AsnEncodedData 类的新实例。 |
AsnEncodedData(String, ReadOnlySpan<Byte>) |
从对象标识符 (OID) 和现有编码的数据初始化 AsnEncodedData 类的新实例。 |
AsnEncodedData()
- Source:
- AsnEncodedData.cs
- Source:
- AsnEncodedData.cs
- Source:
- AsnEncodedData.cs
初始化 AsnEncodedData 类的新实例。
protected:
AsnEncodedData();
protected AsnEncodedData ();
Protected Sub New ()
示例
下面的代码示例演示如何使用 AsnEncodedData 类。
#using <System.dll>
#using <System.Security.dll>
using namespace System;
using namespace System::Security::Cryptography;
using namespace System::Security::Cryptography::X509Certificates;
int main()
{
//The following example demonstrates the usage of the AsnEncodedData classes.
// Asn encoded data is read from the extensions of an X509 certificate.
try
{
// Open the certificate store.
X509Store^ store = gcnew X509Store( L"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 ));
// Select one or more certificates to display extensions information.
X509Certificate2Collection^ scollection = X509Certificate2UI::SelectFromCollection(fcollection, L"Certificate Select",L"Select certificates from the following list to get extension information on that certificate",X509SelectionFlag::MultiSelection);
// Create a new AsnEncodedDataCollection object.
AsnEncodedDataCollection^ asncoll = gcnew AsnEncodedDataCollection;
for ( int i = 0; i < scollection->Count; i++ )
{
// Display certificate information.
Console::ForegroundColor = ConsoleColor::Red;
Console::WriteLine( L"Certificate name: {0}", scollection[i]->GetName() );
Console::ResetColor();
// Display extensions information.
System::Collections::IEnumerator^ myEnum = scollection[i]->Extensions->GetEnumerator();
while ( myEnum->MoveNext() )
{
X509Extension^ extension = safe_cast<X509Extension ^>(myEnum->Current);
// Create an AsnEncodedData object using the extensions information.
AsnEncodedData^ asndata = gcnew AsnEncodedData( extension->Oid,extension->RawData );
Console::ForegroundColor = ConsoleColor::Green;
Console::WriteLine( L"Extension type: {0}", extension->Oid->FriendlyName );
Console::WriteLine( L"Oid value: {0}", asndata->Oid->Value );
Console::WriteLine( L"Raw data length: {0} {1}", asndata->RawData->Length, Environment::NewLine );
Console::ResetColor();
Console::WriteLine( asndata->Format(true) );
Console::WriteLine( Environment::NewLine );
// Add the AsnEncodedData object to the AsnEncodedDataCollection object.
asncoll->Add( asndata );
}
Console::WriteLine( Environment::NewLine );
}
Console::ForegroundColor = ConsoleColor::Red;
Console::WriteLine( L"Number of AsnEncodedData items in the collection: {0} {1}", asncoll->Count, Environment::NewLine );
Console::ResetColor();
store->Close();
//Create an enumerator for moving through the collection.
AsnEncodedDataEnumerator^ asne = asncoll->GetEnumerator();
//You must execute a MoveNext() to get to the first item in the collection.
asne->MoveNext();
// Write out AsnEncodedData in the collection.
Console::ForegroundColor = ConsoleColor::Blue;
Console::WriteLine( L"First AsnEncodedData in the collection: {0}", asne->Current->Format(true) );
Console::ResetColor();
asne->MoveNext();
Console::ForegroundColor = ConsoleColor::DarkBlue;
Console::WriteLine( L"Second AsnEncodedData in the collection: {0}", asne->Current->Format(true) );
Console::ResetColor();
//Return index in the collection to the beginning.
asne->Reset();
}
catch ( CryptographicException^ )
{
Console::WriteLine( L"Information could not be written out for this certificate." );
}
return 1;
}
using System;
using System.Security.Cryptography;
using System.Security.Cryptography.X509Certificates;
class AsnEncodedDataSample
{
static void Main()
{
//The following example demonstrates the usage the AsnEncodedData classes.
// Asn encoded data is read from the extensions of an X509 certificate.
try
{
// Open the certificate store.
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);
// Select one or more certificates to display extensions information.
X509Certificate2Collection scollection = X509Certificate2UI.SelectFromCollection(fcollection, "Certificate Select", "Select certificates from the following list to get extension information on that certificate", X509SelectionFlag.MultiSelection);
// Create a new AsnEncodedDataCollection object.
AsnEncodedDataCollection asncoll = new AsnEncodedDataCollection();
for (int i = 0; i < scollection.Count; i++)
{
// Display certificate information.
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine("Certificate name: {0}", scollection[i].GetName());
Console.ResetColor();
// Display extensions information.
foreach (X509Extension extension in scollection[i].Extensions)
{
// Create an AsnEncodedData object using the extensions information.
AsnEncodedData asndata = new AsnEncodedData(extension.Oid, extension.RawData);
Console.ForegroundColor = ConsoleColor.Green;
Console.WriteLine("Extension type: {0}", extension.Oid.FriendlyName);
Console.WriteLine("Oid value: {0}",asndata.Oid.Value);
Console.WriteLine("Raw data length: {0} {1}", asndata.RawData.Length, Environment.NewLine);
Console.ResetColor();
Console.WriteLine(asndata.Format(true));
Console.WriteLine(Environment.NewLine);
// Add the AsnEncodedData object to the AsnEncodedDataCollection object.
asncoll.Add(asndata);
}
Console.WriteLine(Environment.NewLine);
}
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine("Number of AsnEncodedData items in the collection: {0} {1}", asncoll.Count, Environment.NewLine);
Console.ResetColor();
store.Close();
//Create an enumerator for moving through the collection.
AsnEncodedDataEnumerator asne = asncoll.GetEnumerator();
//You must execute a MoveNext() to get to the first item in the collection.
asne.MoveNext();
// Write out AsnEncodedData in the collection.
Console.ForegroundColor = ConsoleColor.Blue;
Console.WriteLine("First AsnEncodedData in the collection: {0}", asne.Current.Format(true));
Console.ResetColor();
asne.MoveNext();
Console.ForegroundColor = ConsoleColor.DarkBlue;
Console.WriteLine("Second AsnEncodedData in the collection: {0}", asne.Current.Format(true));
Console.ResetColor();
//Return index in the collection to the beginning.
asne.Reset();
}
catch (CryptographicException)
{
Console.WriteLine("Information could not be written out for this certificate.");
}
}
}
Imports System.Security.Cryptography
Imports System.Security.Cryptography.X509Certificates
Class AsnEncodedDataSample
Shared msg As String
Shared Sub Main()
'The following example demonstrates the usage the AsnEncodedData classes.
' Asn encoded data is read from the extensions of an X509 certificate.
Try
' Open the certificate store.
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)
' Select one or more certificates to display extensions information.
Dim scollection As X509Certificate2Collection = X509Certificate2UI.SelectFromCollection(fcollection, "Certificate Select", "Select certificates from the following list to get extension information on that certificate", X509SelectionFlag.MultiSelection)
' Create a new AsnEncodedDataCollection object.
Dim asncoll As New AsnEncodedDataCollection()
Dim i As Integer
For i = 0 To scollection.Count - 1
' Display certificate information.
msg = "Certificate name: "& scollection(i).GetName()
MsgBox(msg)
' Display extensions information.
Dim extension As X509Extension
For Each extension In scollection(i).Extensions
' Create an AsnEncodedData object using the extensions information.
Dim asndata As New AsnEncodedData(extension.Oid, extension.RawData)
msg = "Extension type: " & extension.Oid.FriendlyName & Environment.NewLine & "Oid value: " & asndata.Oid.Value _
& Environment.NewLine & "Raw data length: " & asndata.RawData.Length & Environment.NewLine _
& asndata.Format(True) & Environment.NewLine
MsgBox(msg)
' Add the AsnEncodedData object to the AsnEncodedDataCollection object.
asncoll.Add(asndata)
Next extension
Next i
msg = "Number of AsnEncodedData items in the collection: " & asncoll.Count
MsgBox(msg)
store.Close()
'Create an enumerator for moving through the collection.
Dim asne As AsnEncodedDataEnumerator = asncoll.GetEnumerator()
'You must execute a MoveNext() to get to the first item in the collection.
asne.MoveNext()
' Write out AsnEncodedData in the collection.
msg = "First AsnEncodedData in the collection: " & asne.Current.Format(True)
MsgBox(msg)
asne.MoveNext()
msg = "Second AsnEncodedData in the collection: " & asne.Current.Format(True)
MsgBox(msg)
'Return index in the collection to the beginning.
asne.Reset()
Catch
MsgBox("Information could not be written out for this certificate.")
End Try
End Sub
End Class
适用于
AsnEncodedData(Byte[])
- Source:
- AsnEncodedData.cs
- Source:
- AsnEncodedData.cs
- Source:
- AsnEncodedData.cs
使用一个字节数组初始化 AsnEncodedData 类的新实例。
public:
AsnEncodedData(cli::array <System::Byte> ^ rawData);
public AsnEncodedData (byte[] rawData);
new System.Security.Cryptography.AsnEncodedData : byte[] -> System.Security.Cryptography.AsnEncodedData
Public Sub New (rawData As Byte())
参数
- rawData
- Byte[]
一个包含 Abstract Syntax Notation One (ASN.1) 编码数据的字节数组。
适用于
AsnEncodedData(ReadOnlySpan<Byte>)
- Source:
- AsnEncodedData.cs
- Source:
- AsnEncodedData.cs
- Source:
- AsnEncodedData.cs
从现有编码数据初始化 AsnEncodedData 类的新实例。
public:
AsnEncodedData(ReadOnlySpan<System::Byte> rawData);
public AsnEncodedData (ReadOnlySpan<byte> rawData);
new System.Security.Cryptography.AsnEncodedData : ReadOnlySpan<byte> -> System.Security.Cryptography.AsnEncodedData
Public Sub New (rawData As ReadOnlySpan(Of Byte))
参数
- rawData
- ReadOnlySpan<Byte>
抽象语法表示法一 (ASN.1) 编码的数据。
适用于
AsnEncodedData(AsnEncodedData)
- Source:
- AsnEncodedData.cs
- Source:
- AsnEncodedData.cs
- Source:
- AsnEncodedData.cs
使用 AsnEncodedData 类的一个实例初始化 AsnEncodedData 类的新实例。
public:
AsnEncodedData(System::Security::Cryptography::AsnEncodedData ^ asnEncodedData);
public AsnEncodedData (System.Security.Cryptography.AsnEncodedData asnEncodedData);
new System.Security.Cryptography.AsnEncodedData : System.Security.Cryptography.AsnEncodedData -> System.Security.Cryptography.AsnEncodedData
Public Sub New (asnEncodedData As AsnEncodedData)
参数
- asnEncodedData
- AsnEncodedData
AsnEncodedData 类的实例。
例外
asnEncodedData
为 null
。
示例
下面的代码示例演示如何使用 AsnEncodedData 类。
#using <System.dll>
#using <System.Security.dll>
using namespace System;
using namespace System::Security::Cryptography;
using namespace System::Security::Cryptography::X509Certificates;
int main()
{
//The following example demonstrates the usage of the AsnEncodedData classes.
// Asn encoded data is read from the extensions of an X509 certificate.
try
{
// Open the certificate store.
X509Store^ store = gcnew X509Store( L"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 ));
// Select one or more certificates to display extensions information.
X509Certificate2Collection^ scollection = X509Certificate2UI::SelectFromCollection(fcollection, L"Certificate Select",L"Select certificates from the following list to get extension information on that certificate",X509SelectionFlag::MultiSelection);
// Create a new AsnEncodedDataCollection object.
AsnEncodedDataCollection^ asncoll = gcnew AsnEncodedDataCollection;
for ( int i = 0; i < scollection->Count; i++ )
{
// Display certificate information.
Console::ForegroundColor = ConsoleColor::Red;
Console::WriteLine( L"Certificate name: {0}", scollection[i]->GetName() );
Console::ResetColor();
// Display extensions information.
System::Collections::IEnumerator^ myEnum = scollection[i]->Extensions->GetEnumerator();
while ( myEnum->MoveNext() )
{
X509Extension^ extension = safe_cast<X509Extension ^>(myEnum->Current);
// Create an AsnEncodedData object using the extensions information.
AsnEncodedData^ asndata = gcnew AsnEncodedData( extension->Oid,extension->RawData );
Console::ForegroundColor = ConsoleColor::Green;
Console::WriteLine( L"Extension type: {0}", extension->Oid->FriendlyName );
Console::WriteLine( L"Oid value: {0}", asndata->Oid->Value );
Console::WriteLine( L"Raw data length: {0} {1}", asndata->RawData->Length, Environment::NewLine );
Console::ResetColor();
Console::WriteLine( asndata->Format(true) );
Console::WriteLine( Environment::NewLine );
// Add the AsnEncodedData object to the AsnEncodedDataCollection object.
asncoll->Add( asndata );
}
Console::WriteLine( Environment::NewLine );
}
Console::ForegroundColor = ConsoleColor::Red;
Console::WriteLine( L"Number of AsnEncodedData items in the collection: {0} {1}", asncoll->Count, Environment::NewLine );
Console::ResetColor();
store->Close();
//Create an enumerator for moving through the collection.
AsnEncodedDataEnumerator^ asne = asncoll->GetEnumerator();
//You must execute a MoveNext() to get to the first item in the collection.
asne->MoveNext();
// Write out AsnEncodedData in the collection.
Console::ForegroundColor = ConsoleColor::Blue;
Console::WriteLine( L"First AsnEncodedData in the collection: {0}", asne->Current->Format(true) );
Console::ResetColor();
asne->MoveNext();
Console::ForegroundColor = ConsoleColor::DarkBlue;
Console::WriteLine( L"Second AsnEncodedData in the collection: {0}", asne->Current->Format(true) );
Console::ResetColor();
//Return index in the collection to the beginning.
asne->Reset();
}
catch ( CryptographicException^ )
{
Console::WriteLine( L"Information could not be written out for this certificate." );
}
return 1;
}
using System;
using System.Security.Cryptography;
using System.Security.Cryptography.X509Certificates;
class AsnEncodedDataSample
{
static void Main()
{
//The following example demonstrates the usage the AsnEncodedData classes.
// Asn encoded data is read from the extensions of an X509 certificate.
try
{
// Open the certificate store.
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);
// Select one or more certificates to display extensions information.
X509Certificate2Collection scollection = X509Certificate2UI.SelectFromCollection(fcollection, "Certificate Select", "Select certificates from the following list to get extension information on that certificate", X509SelectionFlag.MultiSelection);
// Create a new AsnEncodedDataCollection object.
AsnEncodedDataCollection asncoll = new AsnEncodedDataCollection();
for (int i = 0; i < scollection.Count; i++)
{
// Display certificate information.
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine("Certificate name: {0}", scollection[i].GetName());
Console.ResetColor();
// Display extensions information.
foreach (X509Extension extension in scollection[i].Extensions)
{
// Create an AsnEncodedData object using the extensions information.
AsnEncodedData asndata = new AsnEncodedData(extension.Oid, extension.RawData);
Console.ForegroundColor = ConsoleColor.Green;
Console.WriteLine("Extension type: {0}", extension.Oid.FriendlyName);
Console.WriteLine("Oid value: {0}",asndata.Oid.Value);
Console.WriteLine("Raw data length: {0} {1}", asndata.RawData.Length, Environment.NewLine);
Console.ResetColor();
Console.WriteLine(asndata.Format(true));
Console.WriteLine(Environment.NewLine);
// Add the AsnEncodedData object to the AsnEncodedDataCollection object.
asncoll.Add(asndata);
}
Console.WriteLine(Environment.NewLine);
}
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine("Number of AsnEncodedData items in the collection: {0} {1}", asncoll.Count, Environment.NewLine);
Console.ResetColor();
store.Close();
//Create an enumerator for moving through the collection.
AsnEncodedDataEnumerator asne = asncoll.GetEnumerator();
//You must execute a MoveNext() to get to the first item in the collection.
asne.MoveNext();
// Write out AsnEncodedData in the collection.
Console.ForegroundColor = ConsoleColor.Blue;
Console.WriteLine("First AsnEncodedData in the collection: {0}", asne.Current.Format(true));
Console.ResetColor();
asne.MoveNext();
Console.ForegroundColor = ConsoleColor.DarkBlue;
Console.WriteLine("Second AsnEncodedData in the collection: {0}", asne.Current.Format(true));
Console.ResetColor();
//Return index in the collection to the beginning.
asne.Reset();
}
catch (CryptographicException)
{
Console.WriteLine("Information could not be written out for this certificate.");
}
}
}
Imports System.Security.Cryptography
Imports System.Security.Cryptography.X509Certificates
Class AsnEncodedDataSample
Shared msg As String
Shared Sub Main()
'The following example demonstrates the usage the AsnEncodedData classes.
' Asn encoded data is read from the extensions of an X509 certificate.
Try
' Open the certificate store.
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)
' Select one or more certificates to display extensions information.
Dim scollection As X509Certificate2Collection = X509Certificate2UI.SelectFromCollection(fcollection, "Certificate Select", "Select certificates from the following list to get extension information on that certificate", X509SelectionFlag.MultiSelection)
' Create a new AsnEncodedDataCollection object.
Dim asncoll As New AsnEncodedDataCollection()
Dim i As Integer
For i = 0 To scollection.Count - 1
' Display certificate information.
msg = "Certificate name: "& scollection(i).GetName()
MsgBox(msg)
' Display extensions information.
Dim extension As X509Extension
For Each extension In scollection(i).Extensions
' Create an AsnEncodedData object using the extensions information.
Dim asndata As New AsnEncodedData(extension.Oid, extension.RawData)
msg = "Extension type: " & extension.Oid.FriendlyName & Environment.NewLine & "Oid value: " & asndata.Oid.Value _
& Environment.NewLine & "Raw data length: " & asndata.RawData.Length & Environment.NewLine _
& asndata.Format(True) & Environment.NewLine
MsgBox(msg)
' Add the AsnEncodedData object to the AsnEncodedDataCollection object.
asncoll.Add(asndata)
Next extension
Next i
msg = "Number of AsnEncodedData items in the collection: " & asncoll.Count
MsgBox(msg)
store.Close()
'Create an enumerator for moving through the collection.
Dim asne As AsnEncodedDataEnumerator = asncoll.GetEnumerator()
'You must execute a MoveNext() to get to the first item in the collection.
asne.MoveNext()
' Write out AsnEncodedData in the collection.
msg = "First AsnEncodedData in the collection: " & asne.Current.Format(True)
MsgBox(msg)
asne.MoveNext()
msg = "Second AsnEncodedData in the collection: " & asne.Current.Format(True)
MsgBox(msg)
'Return index in the collection to the beginning.
asne.Reset()
Catch
MsgBox("Information could not be written out for this certificate.")
End Try
End Sub
End Class
注解
此构造函数创建指定 AsnEncodedData 实例的副本。
适用于
AsnEncodedData(Oid, Byte[])
- Source:
- AsnEncodedData.cs
- Source:
- AsnEncodedData.cs
- Source:
- AsnEncodedData.cs
使用一个 AsnEncodedData 对象和一个字节数组初始化 Oid 类的新实例。
public:
AsnEncodedData(System::Security::Cryptography::Oid ^ oid, cli::array <System::Byte> ^ rawData);
public AsnEncodedData (System.Security.Cryptography.Oid? oid, byte[] rawData);
public AsnEncodedData (System.Security.Cryptography.Oid oid, byte[] rawData);
new System.Security.Cryptography.AsnEncodedData : System.Security.Cryptography.Oid * byte[] -> System.Security.Cryptography.AsnEncodedData
Public Sub New (oid As Oid, rawData As Byte())
参数
- rawData
- Byte[]
一个包含 Abstract Syntax Notation One (ASN.1) 编码数据的字节数组。
示例
下面的代码示例演示如何使用 AsnEncodedData 类。
#using <System.dll>
#using <System.Security.dll>
using namespace System;
using namespace System::Security::Cryptography;
using namespace System::Security::Cryptography::X509Certificates;
int main()
{
//The following example demonstrates the usage of the AsnEncodedData classes.
// Asn encoded data is read from the extensions of an X509 certificate.
try
{
// Open the certificate store.
X509Store^ store = gcnew X509Store( L"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 ));
// Select one or more certificates to display extensions information.
X509Certificate2Collection^ scollection = X509Certificate2UI::SelectFromCollection(fcollection, L"Certificate Select",L"Select certificates from the following list to get extension information on that certificate",X509SelectionFlag::MultiSelection);
// Create a new AsnEncodedDataCollection object.
AsnEncodedDataCollection^ asncoll = gcnew AsnEncodedDataCollection;
for ( int i = 0; i < scollection->Count; i++ )
{
// Display certificate information.
Console::ForegroundColor = ConsoleColor::Red;
Console::WriteLine( L"Certificate name: {0}", scollection[i]->GetName() );
Console::ResetColor();
// Display extensions information.
System::Collections::IEnumerator^ myEnum = scollection[i]->Extensions->GetEnumerator();
while ( myEnum->MoveNext() )
{
X509Extension^ extension = safe_cast<X509Extension ^>(myEnum->Current);
// Create an AsnEncodedData object using the extensions information.
AsnEncodedData^ asndata = gcnew AsnEncodedData( extension->Oid,extension->RawData );
Console::ForegroundColor = ConsoleColor::Green;
Console::WriteLine( L"Extension type: {0}", extension->Oid->FriendlyName );
Console::WriteLine( L"Oid value: {0}", asndata->Oid->Value );
Console::WriteLine( L"Raw data length: {0} {1}", asndata->RawData->Length, Environment::NewLine );
Console::ResetColor();
Console::WriteLine( asndata->Format(true) );
Console::WriteLine( Environment::NewLine );
// Add the AsnEncodedData object to the AsnEncodedDataCollection object.
asncoll->Add( asndata );
}
Console::WriteLine( Environment::NewLine );
}
Console::ForegroundColor = ConsoleColor::Red;
Console::WriteLine( L"Number of AsnEncodedData items in the collection: {0} {1}", asncoll->Count, Environment::NewLine );
Console::ResetColor();
store->Close();
//Create an enumerator for moving through the collection.
AsnEncodedDataEnumerator^ asne = asncoll->GetEnumerator();
//You must execute a MoveNext() to get to the first item in the collection.
asne->MoveNext();
// Write out AsnEncodedData in the collection.
Console::ForegroundColor = ConsoleColor::Blue;
Console::WriteLine( L"First AsnEncodedData in the collection: {0}", asne->Current->Format(true) );
Console::ResetColor();
asne->MoveNext();
Console::ForegroundColor = ConsoleColor::DarkBlue;
Console::WriteLine( L"Second AsnEncodedData in the collection: {0}", asne->Current->Format(true) );
Console::ResetColor();
//Return index in the collection to the beginning.
asne->Reset();
}
catch ( CryptographicException^ )
{
Console::WriteLine( L"Information could not be written out for this certificate." );
}
return 1;
}
using System;
using System.Security.Cryptography;
using System.Security.Cryptography.X509Certificates;
class AsnEncodedDataSample
{
static void Main()
{
//The following example demonstrates the usage the AsnEncodedData classes.
// Asn encoded data is read from the extensions of an X509 certificate.
try
{
// Open the certificate store.
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);
// Select one or more certificates to display extensions information.
X509Certificate2Collection scollection = X509Certificate2UI.SelectFromCollection(fcollection, "Certificate Select", "Select certificates from the following list to get extension information on that certificate", X509SelectionFlag.MultiSelection);
// Create a new AsnEncodedDataCollection object.
AsnEncodedDataCollection asncoll = new AsnEncodedDataCollection();
for (int i = 0; i < scollection.Count; i++)
{
// Display certificate information.
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine("Certificate name: {0}", scollection[i].GetName());
Console.ResetColor();
// Display extensions information.
foreach (X509Extension extension in scollection[i].Extensions)
{
// Create an AsnEncodedData object using the extensions information.
AsnEncodedData asndata = new AsnEncodedData(extension.Oid, extension.RawData);
Console.ForegroundColor = ConsoleColor.Green;
Console.WriteLine("Extension type: {0}", extension.Oid.FriendlyName);
Console.WriteLine("Oid value: {0}",asndata.Oid.Value);
Console.WriteLine("Raw data length: {0} {1}", asndata.RawData.Length, Environment.NewLine);
Console.ResetColor();
Console.WriteLine(asndata.Format(true));
Console.WriteLine(Environment.NewLine);
// Add the AsnEncodedData object to the AsnEncodedDataCollection object.
asncoll.Add(asndata);
}
Console.WriteLine(Environment.NewLine);
}
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine("Number of AsnEncodedData items in the collection: {0} {1}", asncoll.Count, Environment.NewLine);
Console.ResetColor();
store.Close();
//Create an enumerator for moving through the collection.
AsnEncodedDataEnumerator asne = asncoll.GetEnumerator();
//You must execute a MoveNext() to get to the first item in the collection.
asne.MoveNext();
// Write out AsnEncodedData in the collection.
Console.ForegroundColor = ConsoleColor.Blue;
Console.WriteLine("First AsnEncodedData in the collection: {0}", asne.Current.Format(true));
Console.ResetColor();
asne.MoveNext();
Console.ForegroundColor = ConsoleColor.DarkBlue;
Console.WriteLine("Second AsnEncodedData in the collection: {0}", asne.Current.Format(true));
Console.ResetColor();
//Return index in the collection to the beginning.
asne.Reset();
}
catch (CryptographicException)
{
Console.WriteLine("Information could not be written out for this certificate.");
}
}
}
Imports System.Security.Cryptography
Imports System.Security.Cryptography.X509Certificates
Class AsnEncodedDataSample
Shared msg As String
Shared Sub Main()
'The following example demonstrates the usage the AsnEncodedData classes.
' Asn encoded data is read from the extensions of an X509 certificate.
Try
' Open the certificate store.
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)
' Select one or more certificates to display extensions information.
Dim scollection As X509Certificate2Collection = X509Certificate2UI.SelectFromCollection(fcollection, "Certificate Select", "Select certificates from the following list to get extension information on that certificate", X509SelectionFlag.MultiSelection)
' Create a new AsnEncodedDataCollection object.
Dim asncoll As New AsnEncodedDataCollection()
Dim i As Integer
For i = 0 To scollection.Count - 1
' Display certificate information.
msg = "Certificate name: "& scollection(i).GetName()
MsgBox(msg)
' Display extensions information.
Dim extension As X509Extension
For Each extension In scollection(i).Extensions
' Create an AsnEncodedData object using the extensions information.
Dim asndata As New AsnEncodedData(extension.Oid, extension.RawData)
msg = "Extension type: " & extension.Oid.FriendlyName & Environment.NewLine & "Oid value: " & asndata.Oid.Value _
& Environment.NewLine & "Raw data length: " & asndata.RawData.Length & Environment.NewLine _
& asndata.Format(True) & Environment.NewLine
MsgBox(msg)
' Add the AsnEncodedData object to the AsnEncodedDataCollection object.
asncoll.Add(asndata)
Next extension
Next i
msg = "Number of AsnEncodedData items in the collection: " & asncoll.Count
MsgBox(msg)
store.Close()
'Create an enumerator for moving through the collection.
Dim asne As AsnEncodedDataEnumerator = asncoll.GetEnumerator()
'You must execute a MoveNext() to get to the first item in the collection.
asne.MoveNext()
' Write out AsnEncodedData in the collection.
msg = "First AsnEncodedData in the collection: " & asne.Current.Format(True)
MsgBox(msg)
asne.MoveNext()
msg = "Second AsnEncodedData in the collection: " & asne.Current.Format(True)
MsgBox(msg)
'Return index in the collection to the beginning.
asne.Reset()
Catch
MsgBox("Information could not be written out for this certificate.")
End Try
End Sub
End Class
适用于
AsnEncodedData(Oid, ReadOnlySpan<Byte>)
- Source:
- AsnEncodedData.cs
- Source:
- AsnEncodedData.cs
- Source:
- AsnEncodedData.cs
从对象标识符 (OID) 和现有编码的数据初始化 AsnEncodedData 类的新实例。
public:
AsnEncodedData(System::Security::Cryptography::Oid ^ oid, ReadOnlySpan<System::Byte> rawData);
public AsnEncodedData (System.Security.Cryptography.Oid? oid, ReadOnlySpan<byte> rawData);
new System.Security.Cryptography.AsnEncodedData : System.Security.Cryptography.Oid * ReadOnlySpan<byte> -> System.Security.Cryptography.AsnEncodedData
Public Sub New (oid As Oid, rawData As ReadOnlySpan(Of Byte))
参数
- oid
- Oid
此数据的对象标识符。
- rawData
- ReadOnlySpan<Byte>
抽象语法表示法一 (ASN.1) 编码的数据。
适用于
AsnEncodedData(String, Byte[])
- Source:
- AsnEncodedData.cs
- Source:
- AsnEncodedData.cs
- Source:
- AsnEncodedData.cs
使用一个字节数组初始化 AsnEncodedData 类的新实例。
public:
AsnEncodedData(System::String ^ oid, cli::array <System::Byte> ^ rawData);
public AsnEncodedData (string oid, byte[] rawData);
new System.Security.Cryptography.AsnEncodedData : string * byte[] -> System.Security.Cryptography.AsnEncodedData
Public Sub New (oid As String, rawData As Byte())
参数
- rawData
- Byte[]
一个包含 Abstract Syntax Notation One (ASN.1) 编码数据的字节数组。
示例
下面的代码示例演示如何使用 AsnEncodedData 类。
#using <System.dll>
#using <System.Security.dll>
using namespace System;
using namespace System::Security::Cryptography;
using namespace System::Security::Cryptography::X509Certificates;
int main()
{
//The following example demonstrates the usage of the AsnEncodedData classes.
// Asn encoded data is read from the extensions of an X509 certificate.
try
{
// Open the certificate store.
X509Store^ store = gcnew X509Store( L"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 ));
// Select one or more certificates to display extensions information.
X509Certificate2Collection^ scollection = X509Certificate2UI::SelectFromCollection(fcollection, L"Certificate Select",L"Select certificates from the following list to get extension information on that certificate",X509SelectionFlag::MultiSelection);
// Create a new AsnEncodedDataCollection object.
AsnEncodedDataCollection^ asncoll = gcnew AsnEncodedDataCollection;
for ( int i = 0; i < scollection->Count; i++ )
{
// Display certificate information.
Console::ForegroundColor = ConsoleColor::Red;
Console::WriteLine( L"Certificate name: {0}", scollection[i]->GetName() );
Console::ResetColor();
// Display extensions information.
System::Collections::IEnumerator^ myEnum = scollection[i]->Extensions->GetEnumerator();
while ( myEnum->MoveNext() )
{
X509Extension^ extension = safe_cast<X509Extension ^>(myEnum->Current);
// Create an AsnEncodedData object using the extensions information.
AsnEncodedData^ asndata = gcnew AsnEncodedData( extension->Oid,extension->RawData );
Console::ForegroundColor = ConsoleColor::Green;
Console::WriteLine( L"Extension type: {0}", extension->Oid->FriendlyName );
Console::WriteLine( L"Oid value: {0}", asndata->Oid->Value );
Console::WriteLine( L"Raw data length: {0} {1}", asndata->RawData->Length, Environment::NewLine );
Console::ResetColor();
Console::WriteLine( asndata->Format(true) );
Console::WriteLine( Environment::NewLine );
// Add the AsnEncodedData object to the AsnEncodedDataCollection object.
asncoll->Add( asndata );
}
Console::WriteLine( Environment::NewLine );
}
Console::ForegroundColor = ConsoleColor::Red;
Console::WriteLine( L"Number of AsnEncodedData items in the collection: {0} {1}", asncoll->Count, Environment::NewLine );
Console::ResetColor();
store->Close();
//Create an enumerator for moving through the collection.
AsnEncodedDataEnumerator^ asne = asncoll->GetEnumerator();
//You must execute a MoveNext() to get to the first item in the collection.
asne->MoveNext();
// Write out AsnEncodedData in the collection.
Console::ForegroundColor = ConsoleColor::Blue;
Console::WriteLine( L"First AsnEncodedData in the collection: {0}", asne->Current->Format(true) );
Console::ResetColor();
asne->MoveNext();
Console::ForegroundColor = ConsoleColor::DarkBlue;
Console::WriteLine( L"Second AsnEncodedData in the collection: {0}", asne->Current->Format(true) );
Console::ResetColor();
//Return index in the collection to the beginning.
asne->Reset();
}
catch ( CryptographicException^ )
{
Console::WriteLine( L"Information could not be written out for this certificate." );
}
return 1;
}
using System;
using System.Security.Cryptography;
using System.Security.Cryptography.X509Certificates;
class AsnEncodedDataSample
{
static void Main()
{
//The following example demonstrates the usage the AsnEncodedData classes.
// Asn encoded data is read from the extensions of an X509 certificate.
try
{
// Open the certificate store.
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);
// Select one or more certificates to display extensions information.
X509Certificate2Collection scollection = X509Certificate2UI.SelectFromCollection(fcollection, "Certificate Select", "Select certificates from the following list to get extension information on that certificate", X509SelectionFlag.MultiSelection);
// Create a new AsnEncodedDataCollection object.
AsnEncodedDataCollection asncoll = new AsnEncodedDataCollection();
for (int i = 0; i < scollection.Count; i++)
{
// Display certificate information.
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine("Certificate name: {0}", scollection[i].GetName());
Console.ResetColor();
// Display extensions information.
foreach (X509Extension extension in scollection[i].Extensions)
{
// Create an AsnEncodedData object using the extensions information.
AsnEncodedData asndata = new AsnEncodedData(extension.Oid, extension.RawData);
Console.ForegroundColor = ConsoleColor.Green;
Console.WriteLine("Extension type: {0}", extension.Oid.FriendlyName);
Console.WriteLine("Oid value: {0}",asndata.Oid.Value);
Console.WriteLine("Raw data length: {0} {1}", asndata.RawData.Length, Environment.NewLine);
Console.ResetColor();
Console.WriteLine(asndata.Format(true));
Console.WriteLine(Environment.NewLine);
// Add the AsnEncodedData object to the AsnEncodedDataCollection object.
asncoll.Add(asndata);
}
Console.WriteLine(Environment.NewLine);
}
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine("Number of AsnEncodedData items in the collection: {0} {1}", asncoll.Count, Environment.NewLine);
Console.ResetColor();
store.Close();
//Create an enumerator for moving through the collection.
AsnEncodedDataEnumerator asne = asncoll.GetEnumerator();
//You must execute a MoveNext() to get to the first item in the collection.
asne.MoveNext();
// Write out AsnEncodedData in the collection.
Console.ForegroundColor = ConsoleColor.Blue;
Console.WriteLine("First AsnEncodedData in the collection: {0}", asne.Current.Format(true));
Console.ResetColor();
asne.MoveNext();
Console.ForegroundColor = ConsoleColor.DarkBlue;
Console.WriteLine("Second AsnEncodedData in the collection: {0}", asne.Current.Format(true));
Console.ResetColor();
//Return index in the collection to the beginning.
asne.Reset();
}
catch (CryptographicException)
{
Console.WriteLine("Information could not be written out for this certificate.");
}
}
}
Imports System.Security.Cryptography
Imports System.Security.Cryptography.X509Certificates
Class AsnEncodedDataSample
Shared msg As String
Shared Sub Main()
'The following example demonstrates the usage the AsnEncodedData classes.
' Asn encoded data is read from the extensions of an X509 certificate.
Try
' Open the certificate store.
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)
' Select one or more certificates to display extensions information.
Dim scollection As X509Certificate2Collection = X509Certificate2UI.SelectFromCollection(fcollection, "Certificate Select", "Select certificates from the following list to get extension information on that certificate", X509SelectionFlag.MultiSelection)
' Create a new AsnEncodedDataCollection object.
Dim asncoll As New AsnEncodedDataCollection()
Dim i As Integer
For i = 0 To scollection.Count - 1
' Display certificate information.
msg = "Certificate name: "& scollection(i).GetName()
MsgBox(msg)
' Display extensions information.
Dim extension As X509Extension
For Each extension In scollection(i).Extensions
' Create an AsnEncodedData object using the extensions information.
Dim asndata As New AsnEncodedData(extension.Oid, extension.RawData)
msg = "Extension type: " & extension.Oid.FriendlyName & Environment.NewLine & "Oid value: " & asndata.Oid.Value _
& Environment.NewLine & "Raw data length: " & asndata.RawData.Length & Environment.NewLine _
& asndata.Format(True) & Environment.NewLine
MsgBox(msg)
' Add the AsnEncodedData object to the AsnEncodedDataCollection object.
asncoll.Add(asndata)
Next extension
Next i
msg = "Number of AsnEncodedData items in the collection: " & asncoll.Count
MsgBox(msg)
store.Close()
'Create an enumerator for moving through the collection.
Dim asne As AsnEncodedDataEnumerator = asncoll.GetEnumerator()
'You must execute a MoveNext() to get to the first item in the collection.
asne.MoveNext()
' Write out AsnEncodedData in the collection.
msg = "First AsnEncodedData in the collection: " & asne.Current.Format(True)
MsgBox(msg)
asne.MoveNext()
msg = "Second AsnEncodedData in the collection: " & asne.Current.Format(True)
MsgBox(msg)
'Return index in the collection to the beginning.
asne.Reset()
Catch
MsgBox("Information could not be written out for this certificate.")
End Try
End Sub
End Class
适用于
AsnEncodedData(String, ReadOnlySpan<Byte>)
- Source:
- AsnEncodedData.cs
- Source:
- AsnEncodedData.cs
- Source:
- AsnEncodedData.cs
从对象标识符 (OID) 和现有编码的数据初始化 AsnEncodedData 类的新实例。
public:
AsnEncodedData(System::String ^ oid, ReadOnlySpan<System::Byte> rawData);
public AsnEncodedData (string oid, ReadOnlySpan<byte> rawData);
new System.Security.Cryptography.AsnEncodedData : string * ReadOnlySpan<byte> -> System.Security.Cryptography.AsnEncodedData
Public Sub New (oid As String, rawData As ReadOnlySpan(Of Byte))
参数
- oid
- String
此数据的对象标识符。
- rawData
- ReadOnlySpan<Byte>
抽象语法表示法一 (ASN.1) 编码的数据。