passforios-gopenpgp/crypto/gopenpgp.go
Daniel Huigens 7d9930b8e0 Improve documentation and naming
- Rename pmmime to gomime
- Rename pmKeyObject to pgpKeyObject
2019-05-15 14:34:22 +02:00

11 lines
341 B
Go

// Package crypto provides a high-level API for common OpenPGP functionality.
package crypto
import "time"
// GopenPGP is used as a "namespace" for many of the functions in this package.
// It is a struct that keeps track of time skew between server and client.
type GopenPGP struct {
latestServerTime int64
latestClientTime time.Time
}