Create a new instance of the CipherData class using CipherReference information. : CipherData « Security « VB.Net Tutorial

Home
VB.Net Tutorial
1.Language Basics
2.Data Type
3.Operator
4.Statements
5.Date Time
6.Class Module
7.Development
8.Collections
9.Generics
10.Attributes
11.Event
12.LINQ
13.Stream File
14.GUI
15.GUI Applications
16.Windows Presentation Foundation
17.2D Graphics
18.I18N Internationlization
19.Reflection
20.Regular Expressions
21.Security
22.Socket Network
23.Thread
24.Windows
25.XML
26.Database ADO.net
27.Design Patterns
VB.Net
VB.Net by API
VB.Net Tutorial » Security » CipherData 
21.3.1.Create a new instance of the CipherData class using CipherReference information.
Imports System
Imports System.Security.Cryptography.Xml
Imports System.Xml
Imports System.IO

Module Module1
    Sub Main()
        Dim uri As String = "http://www.host.com/document.xml"
        Dim base64 As Transform = New XmlDsigBase64Transform
        Dim tc As New TransformChain
        tc.Add(base64)

        Dim reference As CipherReference = New CipherReference(uri, tc)

        Dim cd As CipherData = New CipherData(Reference)

        Dim ed As New EncryptedData

        ed.Id = "ID"
        ed.EncryptionMethod = New EncryptionMethod("http://www.w3.org/2001/04/xmlenc#aes128-cbc")
        ed.CipherData = cd

        Dim ki As New KeyInfo
        ki.AddClause(New KeyInfoRetrievalMethod("#EK""http://www.w3.org/2001/04/xmlenc#EncryptedKey"))
        ed.KeyInfo = ki

        Dim doc As New XmlDocument
        Dim encryptionPropertyElement As XmlElement = CType(doc.CreateElement("EncryptionProperty", EncryptedXml.XmlEncNamespaceUrl), XmlElement)
        Dim ep As New EncryptionProperty(encryptionPropertyElement)
        ed.AddProperty(ep)

        File.WriteAllText("c:\d.xml", ed.GetXml().OuterXml)
    End Sub

End Module
21.3.CipherData
21.3.1.Create a new instance of the CipherData class using CipherReference information.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.