Java Key Public getPublicKey(KeyPair kp)

Here you can find the source of getPublicKey(KeyPair kp)

Description

get Public Key

License

Open Source License

Declaration

public static Key getPublicKey(KeyPair kp) 

Method Source Code

//package com.java2s;
/*******************************************************************************
 * Copyright (c) 2014 Buzzcoders.com./*from  w ww.j av a2 s.c o  m*/
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *     Massimo Rabbi - initial API and implementation
 ******************************************************************************/

import java.security.Key;
import java.security.KeyPair;

public class Main {
    public static Key getPublicKey(KeyPair kp) {
        return (kp != null) ? kp.getPublic() : null;
    }
}

Related

  1. getPublicKey(final byte[] keyData)
  2. getPublicKey(final byte[] modulus, final byte[] exponent)
  3. getPublicKey(final String algorithm, final File publicKeyFile)
  4. getPublicKey(KeyPair keyPair)
  5. getPublicKey(KeyPair keyPair)
  6. getPublicKey(KeyStore keyStore, String alias)
  7. getPublicKey(KeyStore keyStore, String alias)
  8. getPublicKey(KeyStore keyStore, String alias, char[] password)
  9. getPublicKey(KeyStore ks, String alias, char[] password)