Envoi d’un message de données enveloppées
[CAPICOM est un composant 32 bits uniquement disponible pour une utilisation dans les systèmes d’exploitation suivants : Windows Server 2008, Windows Vista et Windows XP. Utilisez plutôt .NET Framework pour implémenter des fonctionnalités de sécurité. Pour plus d’informations, consultez Alternatives à l’utilisation de CAPICOM.]
Dans l’exemple suivant, un message en texte clair est lu à partir d’un fichier et un magasin de certificats qui contient les certificats des destinataires du message prévus est ouvert. Tous les certificats du magasin sont ajoutés en tant que destinataires du message, le message est enveloppé et le message enveloppé est écrit dans un fichier.
Du code supplémentaire peut être ajouté pour afficher les certificats ajoutés en tant que destinataires de message, pour vérifier ces certificats avant d’être ajoutés en tant que destinataires prévus ou pour choisir ceux qui doivent être ajoutés.
En cas d’erreur CAPICOM, une valeur décimale négative de Err.Number est retournée. Pour plus d’informations, consultez CAPICOM_ERROR_CODE. Pour plus d’informations sur les valeurs décimales positives de Err.Number, consultez Winerror.h.
Sub Envelope(ByVal InFile As String, ByVal OutFile As String, _
ByVal StoreName As String)
On Error GoTo ErrorHandler
'Open the input file and read the message to be enveloped.
Dim Text As String
Open InFile For Input As #1
Input #1, Text
Close #1
If Len(Text) < 1 Then
MsgBox "No message to be enveloped."
Exit Sub
End If
'Open the store containing the certificates of
'the message recipients.
Dim CertStore As New Store
CertStore.Open CAPICOM_CURRENT_USER_STORE, StoreName, _
CAPICOM_STORE_OPEN_READ_ONLY
' Check for an empty certificate store.
If CertStore.Certificates.Count < 1 Then
MsgBox "There are no recipient certificates available."
Set CertStore = Nothing
Exit Sub
End If
' Declare and initialize an EnvelopedData object
Dim EnvMessage As New EnvelopedData
EnvMessage.Content = Text
Dim I As Integer
For I = 1 To CertStore.Certificates.Count
EnvMessage.Recipients.Add CertStore.Certificates.Item(I)
' The following line can be uncommented to see a prompt
' for each certificate in the store.
' CertStore.Certificates.Item(I).Display
Next I
' Set the encryption algorithm and key length. Comment out
' or remove the following lines to use the default algorithm
' and key length. The triple DES algorithm and 128 bit key
' length may not be supported.
Envmessage.Algorithm.Name = ENCRYPTION_ALGORITHM_RC4
Envmessage.Algorithm.KeyLength = KEY_LENGTH_128_BITS
'Declare the string that will hold the enveloped message.
Dim EnvelopedMessage As String
'Encrypt the message into EnvelopedMessage. The enveloped message
'string contains everything that an intended recipient will need to
'decrypt the message, including information on the
'encryption algorithm key length.
EnvelopedMessage = EnvMessage.Encrypt
' Optionally, check the length of the encrypted string to make sure
' that the encrypt method worked.
If Len(EnvelopedMessage) < 1 Then
MsgBox "no message encrypted. "
Else
MsgBox " Message is " & Len(EnvelopedMessage) & " characters"
' Open an output file and write the encrypted message to the
' file. The file is not opened if there is no message to write.
Open OutFile For Output As #2
Write #2, EnvelopedMessage
Close #2
MsgBox "The message written to file "
End If
' Release the EncryptedData object and the Store object.
Set Envmessage = Nothing
Set CertStore = Nothing
Exit Sub
ErrorHandler:
If Err.Number > 0 Then
MsgBox "Visual Basic error found : " & Err.Description
Else
MsgBox "CAPICOM error found : " & Err.Number
End If
End Sub