File: models.go

package info (click to toggle)
golang-github-protonmail-gopenpgp 2.9.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 952 kB
  • sloc: sh: 87; makefile: 2
file content (8 lines) | stat: -rw-r--r-- 208 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
// Package models provides structs containing message data.
package models

// EncryptedSigned contains an encrypted message and signature.
type EncryptedSigned struct {
	Encrypted string
	Signature string
}