Rename pmcrypto.go to gopenpgp.go
This commit is contained in:
parent
b074657c90
commit
30ee92e63b
1 changed files with 0 additions and 0 deletions
15
crypto/gopenpgp.go
Normal file
15
crypto/gopenpgp.go
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
// Package crypto contains all methods and classes needed for manipulation
|
||||
// with underlying cryptographic operations. It uses low-level openpgp functions
|
||||
// and provides higher level views. It uses models of messages, attachments
|
||||
// and other higher-level entities
|
||||
package crypto
|
||||
|
||||
import "time"
|
||||
|
||||
// GopenPGP structure is used to manage server time shift. It should be also used for any
|
||||
// other specific general cryptographic entities.
|
||||
type GopenPGP struct {
|
||||
//latestServerTime unix time cache
|
||||
latestServerTime int64
|
||||
latestClientTime time.Time
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue