El método getAttribute() de la clase java.security.Provider.Service se utiliza para devolver el valor del atributo para el nombre de atributo particular pasado en este método.
Sintaxis:
public final String getAttribute(String name)
Valor devuelto: este método devuelve el valor para el tipo de atributo en particular.
A continuación se muestran los ejemplos para ilustrar el método getAttribute() :
Ejemplo 1:
// Java program to demonstrate // getAttribute() method import java.security.*; import java.util.*; public class GFG1 { public static void main(String[] argv) { try { // creating the object of Signature Signature sr = Signature.getInstance( "SHA1withDSA", "SUN"); // getting the Provider of the Signature sr // by using method getProvider() Provider provider = sr.getProvider(); // getting the service of the provider // using getServices() method Provider.Service service = provider .getService("Signature", sr.getAlgorithm()); // getting algorithm of Provider.Service object // by using getAlgorithm() method String algo = service.getAttribute("KeySize"); // display the result System.out.println("KeySize is : " + algo); } catch (NoSuchAlgorithmException e) { System.out.println("Exception thrown : " + e); } catch (NoSuchProviderException e) { System.out.println("Exception thrown : " + e); } } }
Producción:
KeySize is : 1024
Ejemplo 2:
// Java program to demonstrate // getAttribute() method import java.security.*; import java.util.*; public class GFG1 { public static void main(String[] argv) { try { // creating object of MessageDigest MessageDigest msd = MessageDigest.getInstance("MD5"); // getting the Provider of the Signature sr // by using method getProvider() Provider provider = msd.getProvider(); // getting the service of the provider // using getServices() method Provider.Service service = provider .getService("MessageDigest", msd.getAlgorithm()); // getting algorithm of Provider.Service object // by using getAlgorithm() method String algo = service.getAttribute("ImplementedIn"); // display the result System.out.println("ImplementedIn : " + algo); } catch (NoSuchAlgorithmException e) { System.out.println("Exception thrown : " + e); } } }
Producción:
ImplementedIn : Software
Referencia: https://docs.oracle.com/javase/9/docs/api/java/security/Provider.Service.html#getAttribute-java.lang.String-
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA