All Downloads are FREE. Search and download functionalities are using the official Maven repository.

java.security.Key Maven / Gradle / Ivy

The newest version!
package java.security;

import java.io.Serializable;

public interface Key extends Serializable {
	long serialVersionUID= 6603384152749567654l;

    String getAlgorithm();

    byte[] getEncoded();

    String getFormat();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy