TimestampData

data class TimestampData(val url: String, val username: String? = null, val password: String? = null) : Parcelable

TimestampData contains info needed to verify timestamps

Constructors

Link copied to clipboard
constructor(parcel: Parcel)
constructor(url: String, username: String? = null, password: String? = null)

Types

Link copied to clipboard

Properties

Link copied to clipboard
val password: String? = null

password can be optional depending upon the timestamp authority url provided

Link copied to clipboard
val url: String

url param requires a link to services that provides Time Stamp Authority which adds a trusted timestamp to code or to an electronic signature, provides a digital seal of data integrity and a trusted date and time of when the transaction took place. i.e. `https://freetsa.org/tsr'.

Link copied to clipboard
val username: String? = null

username can be optional depending upon the timestamp authority url provided

Functions

Link copied to clipboard
open override fun describeContents(): Int
Link copied to clipboard
open override fun writeToParcel(parcel: Parcel, flags: Int)