Java java.security KeyFactory fields, constructors, methods, implement or subclass

Example usage for Java java.security KeyFactory fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for java.security KeyFactory.

The text is from its open source code.

Method

PrivateKeygeneratePrivate(KeySpec keySpec)
Generates a private key object from the provided key specification (key material).
PublicKeygeneratePublic(KeySpec keySpec)
Generates a public key object from the provided key specification (key material).
StringgetAlgorithm()
Gets the name of the algorithm associated with this KeyFactory .
KeyFactorygetInstance(String algorithm)
Returns a KeyFactory object that converts public/private keys of the specified algorithm.
KeyFactorygetInstance(String algorithm, String provider)
Returns a KeyFactory object that converts public/private keys of the specified algorithm.
KeyFactorygetInstance(String algorithm, Provider provider)
Returns a KeyFactory object that converts public/private keys of the specified algorithm.
TgetKeySpec(Key key, Class keySpec)
Returns a specification (key material) of the given key object.
ProvidergetProvider()
Returns the provider of this key factory object.