fix typo / improve documentatation

This commit is contained in:
William Gotti 2019-05-13 12:33:01 +00:00 committed by Daniel Huigens
parent 701dc26ab5
commit 5cdec38a18
16 changed files with 77 additions and 187 deletions

View file

@ -1,20 +1,20 @@
// Provides high-level public data models used for communication mainly with mobile clients
package models
//EncryptedSplit when encrypt attachemt
// EncryptedSplit when encrypt attachment
type EncryptedSplit struct {
DataPacket []byte
KeyPacket []byte
Algo string
}
//EncryptedSigned encrypt_sign_package
// EncryptedSigned encrypt_sign_package
type EncryptedSigned struct {
Encrypted string
Signature string
}
//DecryptSignedVerify decrypt_sign_verify
// DecryptSignedVerify decrypt_sign_verify
type DecryptSignedVerify struct {
//clear text
Plaintext string