Skip to content

Latest commit

 

History

History
56 lines (36 loc) · 1.52 KB

Word.Document.PasswordEncryptionProvider.md

File metadata and controls

56 lines (36 loc) · 1.52 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Document.PasswordEncryptionProvider property (Word)
vbawd10.chm158007663
vbawd10.chm158007663
Word.Document.PasswordEncryptionProvider
473e7599-4c04-4a29-6d5c-70228900dedf
06/08/2017
medium

Document.PasswordEncryptionProvider property (Word)

Returns a String specifying the name of the algorithm encryption provider that Microsoft Word uses when encrypting documents with passwords. Read-only.

Syntax

expression. PasswordEncryptionProvider

expression A variable that represents a Document object.

Remarks

Use the SetPasswordEncryptionOptions method to specify the name of the algorithm encryption provider Word uses when encrypting documents with passwords.

Example

This example sets the password encryption options if the password encryption algorithm in use is not "Microsoft RSA SChannel Cryptographic Provider."

Sub PasswordSettings() 
 With ActiveDocument 
 If .PasswordEncryptionProvider <> "Microsoft RSA SChannel Cryptographic Provider" Then 
 .SetPasswordEncryptionOptions _ 
 PasswordEncryptionProvider:="Microsoft RSA SChannel Cryptographic Provider", _ 
 PasswordEncryptionAlgorithm:="RC4", _ 
 PasswordEncryptionKeyLength:=56, _ 
 PasswordEncryptionFileProperties:=True 
 End If 
 End With 
End Sub

See also

Document Object

[!includeSupport and feedback]