Was machst denn du?
Der Code zum Verschlüsseln von Items sieht beispielsweise so aus:
Sub Click(Source As Button) 'by Sam
'set encryption_key
Const key = "hallo123"
'declair vars
Dim doc As NotesDocument
Dim ws As New NotesUIWorkspace
Dim it As NotesItem
'get the marked document
Set doc = ws.CurrentDatabase.Database.UnprocessedDocuments.GetFirstDocument
'mark field 4 encryption
Set it = doc.GetFirstItem("crypt_me")
it.IsEncrypted = True
'set doc_encrypt_key
doc.EncryptionKeys = key
'encrypt the document
Call doc.Encrypt
'doc save
Call doc.Save(True, True)
End Sub
Der Code zum entschlüsseln sieht dann so aus:
Sub Click(Source As Button) 'by Sam
'declair vars
Dim doc As NotesDocument
Dim ws As New NotesUIWorkspace
Dim it As NotesItem
'get the marked document
Set doc = ws.CurrentDatabase.Database.UnprocessedDocuments.GetFirstDocument
'mark field 4 decryption
Set it = doc.GetFirstItem("crypt_me")
it.IsEncrypted = False
'doc save
Call doc.Save(True, True)
End Sub
Einfach nur billig. Have fun..
mfg Sam