Метод Create (SymmetricKeyEncryption[], SymmetricKeyEncryptionAlgorithm, String, String)
Creates a symmetric key on the database with the specified encryption type and method.
Пространство имен: Microsoft.SqlServer.Management.Smo
Сборка: Microsoft.SqlServer.Smo (в Microsoft.SqlServer.Smo.dll)
Синтаксис
'Декларация
Public Sub Create ( _
keyEncryptions As SymmetricKeyEncryption(), _
keyEncryptionAlgorithm As SymmetricKeyEncryptionAlgorithm, _
passPhrase As String, _
identityPhrase As String _
)
'Применение
Dim instance As SymmetricKey
Dim keyEncryptions As SymmetricKeyEncryption()
Dim keyEncryptionAlgorithm As SymmetricKeyEncryptionAlgorithm
Dim passPhrase As String
Dim identityPhrase As String
instance.Create(keyEncryptions, keyEncryptionAlgorithm, _
passPhrase, identityPhrase)
public void Create(
SymmetricKeyEncryption[] keyEncryptions,
SymmetricKeyEncryptionAlgorithm keyEncryptionAlgorithm,
string passPhrase,
string identityPhrase
)
public:
void Create(
array<SymmetricKeyEncryption^>^ keyEncryptions,
SymmetricKeyEncryptionAlgorithm keyEncryptionAlgorithm,
String^ passPhrase,
String^ identityPhrase
)
member Create :
keyEncryptions:SymmetricKeyEncryption[] *
keyEncryptionAlgorithm:SymmetricKeyEncryptionAlgorithm *
passPhrase:string *
identityPhrase:string -> unit
public function Create(
keyEncryptions : SymmetricKeyEncryption[],
keyEncryptionAlgorithm : SymmetricKeyEncryptionAlgorithm,
passPhrase : String,
identityPhrase : String
)
Параметры
- keyEncryptions
Тип: array<Microsoft.SqlServer.Management.Smo. . :: . .SymmetricKeyEncryption> [] () [] []
A SymmetricKeyEncryption object array value that specifies more than one encryption type.
- keyEncryptionAlgorithm
Тип: Microsoft.SqlServer.Management.Smo. . :: . .SymmetricKeyEncryptionAlgorithm
A SymmetricKeyEncryptionAlgorithm value that specifies the encryption method.
- passPhrase
Тип: System. . :: . .String
A String value that specifies the pass phrase from which the symmetric key can be derived.
- identityPhrase
Тип: System. . :: . .String
A String value that specifies the identity phrase used to tag data that is encrypted with the key. Either passPhrase or identityPhrase can be null, but at least one needs to be set.