mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-01 04:41:22 +00:00
15 lines
340 B
Go
15 lines
340 B
Go
|
//go:build !android
|
||
|
// +build !android
|
||
|
|
||
|
package crypto
|
||
|
|
||
|
// GetFilename returns the file name of the message as a string.
|
||
|
func (msg *PlainMessage) GetFilename() string {
|
||
|
return msg.Filename
|
||
|
}
|
||
|
|
||
|
// GetTime returns the modification time of a file (if provided in the ciphertext).
|
||
|
func (msg *PlainMessage) GetTime() uint32 {
|
||
|
return msg.Time
|
||
|
}
|