Java javax.crypto SecretKeyFactory fields, constructors, methods, implement or subclass

Example usage for Java javax.crypto SecretKeyFactory fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.crypto SecretKeyFactory.

The text is from its open source code.

Method

SecretKeygenerateSecret(KeySpec keySpec)
Generates a SecretKey object from the provided key specification (key material).
SecretKeyFactorygetInstance(String algorithm)
Returns a SecretKeyFactory object that converts secret keys of the specified algorithm.
SecretKeyFactorygetInstance(String algorithm, String provider)
Returns a SecretKeyFactory object that converts secret keys of the specified algorithm.
SecretKeyFactorygetInstance(String algorithm, Provider provider)
Returns a SecretKeyFactory object that converts secret keys of the specified algorithm.
KeySpecgetKeySpec(SecretKey key, Class keySpec)
Returns a specification (key material) of the given key object in the requested format.
SecretKeytranslateKey(SecretKey key)
Translates a key object, whose provider may be unknown or potentially untrusted, into a corresponding key object of this secret-key factory.