Uses of Class
javax.crypto.Cipher
-
Packages that use Cipher 软件包 描述 javax.crypto 提供加密操作的类和接口。 -
-
Uses of Cipher in javax.crypto
Subclasses of Cipher in javax.crypto Modifier and Type Class 描述 class
NullCipher
NullCipher类是提供“身份密码”的类,不会转换纯文本。Methods in javax.crypto that return Cipher Modifier and Type 方法 描述 static Cipher
Cipher. getInstance(String transformation)
返回实现指定转换的Cipher
对象。static Cipher
Cipher. getInstance(String transformation, String provider)
返回实现指定转换的Cipher
对象。static Cipher
Cipher. getInstance(String transformation, Provider provider)
返回实现指定转换的Cipher
对象。Methods in javax.crypto with parameters of type Cipher Modifier and Type 方法 描述 PKCS8EncodedKeySpec
EncryptedPrivateKeyInfo. getKeySpec(Cipher cipher)
从加密数据中提取附带的PKCS8EncodedKeySpec对象并返回。Object
SealedObject. getObject(Cipher c)
检索原始(封装)对象。Constructors in javax.crypto with parameters of type Cipher Constructor 描述 CipherInputStream(InputStream is, Cipher c)
从InputStream和Cipher构造一个CipherInputStream。CipherOutputStream(OutputStream os, Cipher c)
从OutputStream和Cipher构造一个CipherOutputStream。SealedObject(Serializable object, Cipher c)
从任何可序列化对象构造一个SealedObject。
-