DocumentBase.SetPasswordEncryptionOptions 메서드
Microsoft Office Word에서 문서를 암호로 암호화하는 데 사용하는 옵션을 설정합니다.
네임스페이스: Microsoft.Office.Tools.Word
어셈블리: Microsoft.Office.Tools.Word.v4.0.Utilities(Microsoft.Office.Tools.Word.v4.0.Utilities.dll)
구문
‘선언
Public Sub SetPasswordEncryptionOptions ( _
passwordEncryptionProvider As String, _
passwordEncryptionAlgorithm As String, _
passwordEncryptionKeyLength As Integer, _
ByRef passwordEncryptionFileProperties As Object _
)
public void SetPasswordEncryptionOptions(
string passwordEncryptionProvider,
string passwordEncryptionAlgorithm,
int passwordEncryptionKeyLength,
ref Object passwordEncryptionFileProperties
)
매개 변수
- passwordEncryptionProvider
형식: System.String
암호화 공급자의 이름입니다.
- passwordEncryptionAlgorithm
형식: System.String
암호화 알고리즘의 이름입니다.Word에서는 스트림 암호화 알고리즘을 지원합니다.
- passwordEncryptionKeyLength
형식: System.Int32
암호화 키 길이입니다.40부터 시작하고 8의 배수여야 합니다.
- passwordEncryptionFileProperties
형식: System.Object%
Word에서 파일 속성을 암호화하려면 true입니다.기본값은 true입니다.
설명
보다 나은 보안을 위해서는 XOR(Weak Encryption)(OfficeXor)이나 "Office97/2000 Compatible"(OfficeStandard) 알고리즘은 사용하지 마십시오.
예제
다음 코드 예제에서는 SetPasswordEncryptionOptions 메서드를 사용하여 RC4 암호화 알고리즘을 사용합니다. 코드에서는 키 길이를 56으로 지정하고, 파일 속성 암호화를 활성화하며, 암호화 공급자의 이름을 문자열 "Microsoft RSA SChannel Cryptographic Provider"로 설정합니다. 이 예제를 사용하려면 문서 수준 프로젝트 ThisDocument 클래스에서 실행하십시오.
Private Sub DocumentSetPasswordEncryptionOptions()
Me.SetPasswordEncryptionOptions( _
"Microsoft RSA SChannel Cryptographic Provider", _
"RC4", 56, True)
End Sub
private void DocumentSetPasswordEncryptionOptions()
{
object PasswordEncryptionFileProperties = true;
this.SetPasswordEncryptionOptions(
"Microsoft RSA SChannel Cryptographic Provider",
"RC4", 56, ref PasswordEncryptionFileProperties);
}
.NET Framework 보안
- 직접 실행 호출자의 경우 완전히 신뢰합니다. 이 멤버는 부분적으로 신뢰할 수 있는 코드에서 사용할 수 없습니다. 자세한 내용은 부분 신뢰 코드에서 라이브러리 사용을 참조하십시오.