PackageDigitalSignature Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents a digital signature that is applied to a set of package parts and relationships.
public ref class PackageDigitalSignature
public class PackageDigitalSignature
type PackageDigitalSignature = class
Public Class PackageDigitalSignature
- Inheritance
-
PackageDigitalSignature
Remarks
A PackageDigitalSignature object is immutable and cannot be altered after it is created.
For security, a PackageDigitalSignature can be associated with parts within a Package. A PackageDigitalSignature incorporates an X.509 certificate that provides two features:
Identifies and authenticates the originator of the part.
Validates that the part has not been modified.
The digital signature does not preclude a part from being modified, but a validation check against the signature fails if the part has changed in any way. The application can then take appropriate action - for example, it can prevent the part from opening or it can notify the user that the part has been modified and is not secure.
Properties
CertificateEmbeddingOption |
Gets the X.509 certificate embedding option. |
Signature |
Gets or sets the XML digital signature. |
SignaturePart |
Gets the PackagePart that contains the signature. |
SignatureType |
Gets the URI string that identifies the signature type. |
SignatureValue |
Gets the encrypted hash value of the Signature. |
SignedParts |
Gets a collection of all the PackagePart objects signed with the signature. |
SignedRelationshipSelectors |
Gets the list of the PackageRelationship parts that have been signed with the signature. |
Signer |
Gets the X.509 certificate of the signer. |
SigningTime |
Gets the date and time that the signature was created. |
TimeFormat |
Gets the format of the date and time returned by the SigningTime property. |
Methods
Equals(Object) |
Determines whether the specified object is equal to the current object. (Inherited from Object) |
GetHashCode() |
Serves as the default hash function. (Inherited from Object) |
GetPartTransformList(Uri) |
Returns an ordered list of the Transform operations applied to a given part. |
GetType() |
Gets the Type of the current instance. (Inherited from Object) |
MemberwiseClone() |
Creates a shallow copy of the current Object. (Inherited from Object) |
ToString() |
Returns a string that represents the current object. (Inherited from Object) |
Verify() |
Verifies the digital signature against an X.509 certificate. |
Verify(X509Certificate) |
Verifies the digital signature against a given X.509 certificate. |