DocumentBase.PasswordEncryptionAlgorithm プロパティ
Microsoft Office Word で、文書をパスワードによって暗号化する場合に使用するアルゴリズムを取得します。
名前空間: Microsoft.Office.Tools.Word
アセンブリ: Microsoft.Office.Tools.Word.v4.0.Utilities (Microsoft.Office.Tools.Word.v4.0.Utilities.dll 内)
構文
'宣言
Public ReadOnly Property PasswordEncryptionAlgorithm As String
public string PasswordEncryptionAlgorithm { get; }
プロパティ値
型 : System.String
Microsoft Office Word で、文書をパスワードによって暗号化する場合に使用するアルゴリズム。
解説
Word で、文書をパスワードによって暗号化する場合に使用するアルゴリズムを指定するには、SetPasswordEncryptionOptions メソッドを使用します。
例
使用されているパスワード暗号化アルゴリズムが "OfficeXor" の場合、パスワード暗号化をより厳しい暗号化に設定するコード例を次に示します。この例を使用するには、これをドキュメント レベルのプロジェクトの ThisDocument クラスから実行します。
Private Sub DocumentPasswordEncryptionAlgorithm()
If Me.PasswordEncryptionAlgorithm = "OfficeXor" Then
Dim PasswordEncryptionProvider As String = "Microsoft RSA SChannel Cryptographic Provider"
Dim PasswordEncryptionAlgorithm As String = "RC4"
Dim PasswordEncryptionKeyLength As Integer = 56
Dim PasswordEncryptionFileProperties As Object = True
Me.SetPasswordEncryptionOptions(PasswordEncryptionProvider, _
PasswordEncryptionAlgorithm, PasswordEncryptionKeyLength, _
PasswordEncryptionFileProperties)
End If
End Sub
private void DocumentPasswordEncryptionAlgorithm()
{
if (this.PasswordEncryptionAlgorithm == "OfficeXor")
{
string PasswordEncryptionProvider = "Microsoft RSA SChannel Cryptographic Provider";
string PasswordEncryptionAlgorithm ="RC4";
int PasswordEncryptionKeyLength = 56;
object PasswordEncryptionFileProperties = true;
this.SetPasswordEncryptionOptions(PasswordEncryptionProvider,
PasswordEncryptionAlgorithm, PasswordEncryptionKeyLength,
ref PasswordEncryptionFileProperties);
}
}
.NET Framework セキュリティ
- 直前の呼び出し元に対する完全な信頼。このメンバーは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。