Example usage for com.amazonaws.services.elastictranscoder.model Encryption setKeyMd5

List of usage examples for com.amazonaws.services.elastictranscoder.model Encryption setKeyMd5

Introduction

In this page you can find the example usage for com.amazonaws.services.elastictranscoder.model Encryption setKeyMd5.

Prototype


public void setKeyMd5(String keyMd5) 

Source Link

Document

The MD5 digest of the key that you used to encrypt your input file, or that you want Elastic Transcoder to use to encrypt your output file.

Usage

From source file:org.alanwilliamson.amazon.transcoder.job.Create.java

License:Open Source License

private Encryption getEncryption(cfStructData es) throws dataNotSupportedException {
    Encryption e = new Encryption();

    if (es.containsKey("key"))
        e.setKey(es.getData("key").getString());

    if (es.containsKey("keymd5"))
        e.setKeyMd5(es.getData("keymd5").getString());

    if (es.containsKey("mode"))
        e.setMode(es.getData("mode").getString());

    if (es.containsKey("initializationvector"))
        e.setInitializationVector(es.getData("initializationvector").getString());

    return e;/* www .j  av a 2s  .  c  o m*/
}