Package org.broadinstitute.gatk.utils.crypt

Examples of org.broadinstitute.gatk.utils.crypt.GATKKey


                                        "Please see " + UserException.PHONE_HOME_DOCS_URL +
                                        " for more information and instructions on how to obtain a key.");
            }
            else {
                PublicKey gatkPublicKey = CryptUtils.loadGATKDistributedPublicKey();
                GATKKey gatkUserKey = new GATKKey(gatkPublicKey, getArgumentCollection().gatkKeyFile);

                if ( ! gatkUserKey.isValid() ) {
                    throw new UserException.KeySignatureVerificationException(getArgumentCollection().gatkKeyFile);
                }
            }
        }
    }
View Full Code Here

TOP

Related Classes of org.broadinstitute.gatk.utils.crypt.GATKKey

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.