Encryption
data class Encryption(val algorithm: String, val compression: String? = null, val originalLength: Long? = null, val profile: String? = null, val scheme: String? = null) : JSONable, Parcelable
Indicates that a resource is encrypted/obfuscated and provides relevant information for decryption.
Parameters
algorithm
Identifies the algorithm used to encrypt the resource (URI).
compression
Compression method used on the resource.
originalLength
Original length of the resource in bytes before compression and/or encryption.
profile
Identifies the encryption profile used to encrypt the resource (URI).
scheme
Identifies the encryption scheme used to encrypt the resource (URI).
Constructors
Functions
Link copied to clipboard
Link copied to clipboard
Serializes an Encryption to its RWPM JSON representation.
Link copied to clipboard