If an Adobe Access client encounters content packaged with Flash Media Rights Management Server 1.x, it will extract the encryption metadata from the content and send it to the server. The server will convert the FMRMS 1.x metadata into the Adobe Access format and send it back to the client. The client then sends the updated metadata in a standard Adobe Access license request.
com.adobe.flashaccess.sdk.protocol.compatibility.FMRMSv1MetadataHandler
.The metadata conversion could be done on the fly when the server receives the old metadata from the client. Alternatively, the server could preprocess the old content and store the converted metadata; in this case, when the client requests new metadata, the server just needs to fetch the new metadata matching the license identifier of the old metadata.
To convert metadata, the server must perform the following steps:
LiveCycleKeyMetaData
. To pre-convert the metadata, LiveCycleKeyMetaData
can be obtained from a 1.x packaged file using MediaEncrypter.examineEncryptedContent()
. The metadata is also included in the metadata conversion request ( FMRMSv1MetadataHandler.getOriginalMetadata()
).V2KeyParameters
object (which you retrieve by calling MediaEncrypter.getKeyParameters()
).SigningCredential
, which is the packager credential issued by Adobe used to sign encryption metadata. Get the SignatureParameters
object by calling MediaEncrypter.getSignatureParameters()
and fill in the signing credential.MetaDataConverter.convertMetadata()
to obtain the V2ContentMetaData
.V2ContentMetaData.getBytes()
and store for future use, or call FMRMSv1MetadataHandler.setUpdatedMetadata()
.