format and comment

This commit is contained in:
Jakub 2019-03-07 14:23:38 +01:00
parent 398de10777
commit a92113e341
4 changed files with 12 additions and 12 deletions

View file

@ -107,10 +107,9 @@ func (pm *PmCrypto) EncryptAttachmentLowMemory(estimatedSize int, fileName strin
return pm.encryptAttachment(estimatedSize, fileName, publicKey, 1<<20)
}
// Use: ios/android only
// Helper method. Splits armored pgp session into key and packet data
// Use: ios/android only
func SplitArmor(encrypted string) (*models.EncryptedSplit, error) {
var err error
encryptedRaw, err := armorUtils.Unarmor(encrypted)
@ -121,7 +120,6 @@ func SplitArmor(encrypted string) (*models.EncryptedSplit, error) {
encryptedReader := bytes.NewReader(encryptedRaw)
return SeparateKeyAndData(nil, encryptedReader, len(encrypted), -1)
}
// Use: ios/android only