Envío de un mensaje de datos sobres
[CAPICOM es un componente solo de 32 bits que está disponible para su uso en los siguientes sistemas operativos: Windows Server 2008, Windows Vista y Windows XP. En su lugar, use .NET Framework para implementar características de seguridad. Para obtener más información, vea Alternativas al uso de CAPICOM.]
En el ejemplo siguiente, se lee un mensaje de texto no cifrado de un archivo y se abre un almacén de certificados que contiene los certificados de los destinatarios del mensaje previsto. Todos los certificados del almacén se agregan como destinatarios del mensaje, el mensaje se sobre y el mensaje sobre se escribe en un archivo.
Se puede agregar código adicional para mostrar los certificados que se agregan como destinatarios del mensaje, para comprobar esos certificados antes de que se agreguen como destinatarios previstos o, de lo contrario, elegir los que se van a agregar.
En cualquier error CAPICOM, se devuelve un valor decimal negativo de Err.Number . Para obtener más información, consulte CAPICOM_ERROR_CODE. Para obtener información sobre los valores decimales positivos de Err.Number, vea 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