次の方法で共有


XmlLicenseTransform クラス

定義

XrML ライセンスを署名用に正規化するためのライセンス変換アルゴリズムを表します。

public ref class XmlLicenseTransform : System::Security::Cryptography::Xml::Transform
public class XmlLicenseTransform : System.Security.Cryptography.Xml.Transform
type XmlLicenseTransform = class
    inherit Transform
Public Class XmlLicenseTransform
Inherits Transform
継承
XmlLicenseTransform

次のコード例は、 インターフェイスと クラスを使用して XML デジタル署名を検証する IRelDecryptor 方法を XmlLicenseTransform 示しています。

void CheckSignatureWithEncryptedGrant(
    String^ fileName, IRelDecryptor^ decryptor)
{
    // Create a new XML document.
    XmlDocument^ sourceDocument = gcnew XmlDocument();
    XmlNamespaceManager^ namespaceManager =
        gcnew XmlNamespaceManager(sourceDocument->NameTable);

    // Format using white spaces.
    sourceDocument->PreserveWhitespace = true;

    // Load the passed XML file into the document.
    sourceDocument->Load(fileName);
    namespaceManager->AddNamespace("dsig",
        SignedXml::XmlDsigNamespaceUrl);

    // Find the "Signature" node and create a new
    // XmlNodeList object.
    XmlNodeList^ nodeList = 
        sourceDocument->SelectNodes("//dsig:Signature", namespaceManager);

    for (int i = 0, count = nodeList->Count; i < count; i++)
    {
        XmlDocument^ clone = (XmlDocument^) sourceDocument->Clone();
        XmlNodeList^ signatures =
            clone->SelectNodes("//dsig:Signature", namespaceManager);

        // Create a new SignedXml object and pass into it the
        // XML document clone.
        SignedXml^ signedDocument = gcnew SignedXml(clone);

        // Load the signature node.
        signedDocument->LoadXml((XmlElement^)signatures[i]);

        // Set the context for license transform
        Transform^ licenseTransform = ((Reference^)signedDocument->
            SignedInfo->References[0])->TransformChain[0];

        if ((licenseTransform::typeid == XmlLicenseTransform::typeid) 
            && (decryptor != nullptr))
        {
            // Decryptor is used to decrypt encryptedGrant
            // elements.
            ((XmlLicenseTransform^) licenseTransform)->Decryptor = decryptor;
        }

        // Check the signature and display the result.
        if (signedDocument->CheckSignature())
        {
            Console::WriteLine("SUCCESS: " +
                "CheckSignatureWithEncryptedGrant - issuer index #" + i);
        }
        else
        {
            Console::WriteLine("FAILURE: " +
                "CheckSignatureWithEncryptedGrant - issuer index #" + i);
        }
    }
}
public static void CheckSignatureWithEncryptedGrant(string fileName, IRelDecryptor decryptor)
{
    // Create a new XML document.
    XmlDocument xmlDocument = new XmlDocument();
    XmlNamespaceManager nsManager = new XmlNamespaceManager(xmlDocument.NameTable);

    // Format using white spaces.
    xmlDocument.PreserveWhitespace = true;

    // Load the passed XML file into the document.
    xmlDocument.Load(fileName);
    nsManager.AddNamespace("dsig", SignedXml.XmlDsigNamespaceUrl);

    // Find the "Signature" node and create a new XmlNodeList object.
    XmlNodeList nodeList = xmlDocument.SelectNodes("//dsig:Signature", nsManager);

    for (int i = 0, count = nodeList.Count; i < count; i++)
    {
        XmlDocument clone = xmlDocument.Clone() as XmlDocument;
        XmlNodeList signatures = clone.SelectNodes("//dsig:Signature", nsManager);

        // Create a new SignedXml object and pass into it the XML document clone.
        SignedXml signedXml = new SignedXml(clone);

        // Load the signature node.
        signedXml.LoadXml((XmlElement)signatures[i]);

        // Set the context for license transform
        Transform trans = ((Reference)signedXml.SignedInfo.References[0]).TransformChain[0];

        if (trans is XmlLicenseTransform)
        {

            // Decryptor is used to decrypt encryptedGrant elements.
            if (decryptor != null)
                (trans as XmlLicenseTransform).Decryptor = decryptor;
        }

        // Check the signature and display the result.
        bool result = signedXml.CheckSignature();

        if (result)
            Console.WriteLine("SUCCESS: CheckSignatureWithEncryptedGrant - issuer index #" +
                                            i.ToString());
        else
            Console.WriteLine("FAILURE: CheckSignatureWithEncryptedGrant - issuer index #" +
                                            i.ToString());
    }
}
    Public Shared Sub CheckSignatureWithEncryptedGrant(ByVal fileName As String, ByVal decryptor As IRelDecryptor)
        ' Create a new XML document.
        Dim xmlDocument As New XmlDocument()
        Dim nsManager As New XmlNamespaceManager(xmlDocument.NameTable)

        ' Format using white spaces.
        xmlDocument.PreserveWhitespace = True

        ' Load the passed XML file into the document. 
        xmlDocument.Load(fileName)
        nsManager.AddNamespace("dsig", SignedXml.XmlDsigNamespaceUrl)

        ' Find the "Signature" node and create a new XmlNodeList object.
        Dim nodeList As XmlNodeList = xmlDocument.SelectNodes("//dsig:Signature", nsManager)

        Dim count = nodeList.Count

        For i As Integer = 0 To count - 1
            Dim clone As XmlDocument = xmlDocument.Clone()
           
            Dim signatures As XmlNodeList = clone.SelectNodes("//dsig:Signature", nsManager)

            ' Create a new SignedXml object and pass into it the XML document clone.
            Dim signedXml As New SignedXml(clone)

            ' Load the signature node.
            signedXml.LoadXml(CType(signatures(i), XmlElement))

            ' Set the context for license transform
            Dim trans As Transform = CType(signedXml.SignedInfo.References(0), Reference).TransformChain(0)

            If TypeOf trans Is XmlLicenseTransform Then

                ' Decryptor is used to decrypt encryptedGrant elements.
                If Not (decryptor Is Nothing) Then
                    CType(trans, XmlLicenseTransform).Decryptor = decryptor
                End If

            End If

            ' Check the signature and display the result.
            Dim result As Boolean = signedXml.CheckSignature()

            If result Then
                Console.WriteLine("SUCCESS: CheckSignatureWithEncryptedGrant - issuer index #" + i.ToString())
            Else
                Console.WriteLine("FAILURE: CheckSignatureWithEncryptedGrant - issuer index #" + i.ToString())
            End If
        Next i

    End Sub
End Class

注釈

クラスは XmlLicenseTransform 、MPEG Rights Extension Language (MPEG REL) で定義されているライセンス変換アルゴリズムを表します。

クラスを XmlLicenseTransform 使用して、署名の XrML ライセンスを変換します。

クラスを記述 XmlLicenseTransform する Uniform Resource Identifier (URI) は、 フィールドによって XmlLicenseTransformUrl 定義されます。

コンストラクター

XmlLicenseTransform()

XmlLicenseTransform クラスの新しいインスタンスを初期化します。

プロパティ

Algorithm

現在の変換で実行されているアルゴリズムを識別する URI (Uniform Resource Identifier) を取得または設定します。

(継承元 Transform)
Context

現在の XmlElement オブジェクトが実行されているドキュメント コンテキストを表す Transform オブジェクトを取得または設定します。

(継承元 Transform)
Decryptor

現在の XmlLicenseTransform の 復号化機能を取得または設定します。

InputTypes

現在の OutputTypes オブジェクトの XmlLicenseTransform メソッドに入力できる型の配列を取得します。

OutputTypes

現在の OutputTypes オブジェクト の XmlLicenseTransform メソッドから出力できる型の配列を取得します。

PropagatedNamespaces

署名に反映させる名前空間を格納する Hashtable オブジェクトを取得または設定します。

(継承元 Transform)
Resolver

現在の XmlResolver オブジェクトを設定します。

(継承元 Transform)

メソッド

Equals(Object)

指定されたオブジェクトが現在のオブジェクトと等しいかどうかを判断します。

(継承元 Object)
GetDigestedOutput(HashAlgorithm)

派生クラスでオーバーライドされた場合は、Transform オブジェクトに関連付けられているダイジェストを返します。

(継承元 Transform)
GetHashCode()

既定のハッシュ関数として機能します。

(継承元 Object)
GetInnerXml()

XMLDSIG <Transform> 要素のサブ要素として含めるのに適した、XmlLicenseTransform オブジェクトのパラメーターの XML 表現を返します。

GetOutput()

XmlLicenseTransform オブジェクトの出力を返します。

GetOutput(Type)

XmlLicenseTransform オブジェクトの出力を返します。

GetType()

現在のインスタンスの Type を取得します。

(継承元 Object)
GetXml()

現在の Transform オブジェクトの XML 表現を返します。

(継承元 Transform)
LoadInnerXml(XmlNodeList)

指定した XmlNodeList オブジェクトを <Transform> 要素の変換に固有な内容として解析します。XmlLicenseTransform オブジェクトは内部 XML 要素を持たないため、このメソッドはサポートされません。

LoadInput(Object)

指定した入力を現在の XmlLicenseTransform オブジェクトに読み込みます。

MemberwiseClone()

現在の Object の簡易コピーを作成します。

(継承元 Object)
ToString()

現在のオブジェクトを表す文字列を返します。

(継承元 Object)

適用対象