Package org.gridforum.jgss

Examples of org.gridforum.jgss.ExtendedGSSCredential


    public static String convertToPem(GSSCredential cred) {
        if (! (cred instanceof ExtendedGSSCredential)) {
            return null;
        }

        ExtendedGSSCredential extCred = (ExtendedGSSCredential)cred;
        String pem = null;
        try {
            byte[] exportData =
                extCred.export(ExtendedGSSCredential.IMPEXP_OPAQUE);
            pem = new String(exportData);
        } catch (GSSException e) {
            log.error(e.getMessage(), e);
        }
View Full Code Here

TOP

Related Classes of org.gridforum.jgss.ExtendedGSSCredential

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.