Example usage for Java javax.crypto SecretKeyFactory fields, constructors, methods, implement or subclass
The text is from its open source code.
SecretKey | generateSecret(KeySpec keySpec) Generates a SecretKey object from the provided key specification (key material). |
SecretKeyFactory | getInstance(String algorithm) Returns a SecretKeyFactory object that converts secret keys of the specified algorithm. |
SecretKeyFactory | getInstance(String algorithm, String provider) Returns a SecretKeyFactory object that converts secret keys of the specified algorithm. |
SecretKeyFactory | getInstance(String algorithm, Provider provider) Returns a SecretKeyFactory object that converts secret keys of the specified algorithm. |
KeySpec | getKeySpec(SecretKey key, Class> keySpec) Returns a specification (key material) of the given key object in the requested format. |
SecretKey | translateKey(SecretKey key) Translates a key object, whose provider may be unknown or potentially untrusted, into a corresponding key object of this secret-key factory. |