2021-09-21 11:27:31 +02:00
|
|
|
//go:build !android
|
2020-10-14 18:28:12 +02:00
|
|
|
// +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
|
|
|
|
|
}
|