Uses of Class
javax.crypto.Cipher
-
Packages that use Cipher 软件包 描述 javax.crypto 提供加密操作的类和接口。 -
-
Uses of Cipher in javax.crypto
Subclasses of Cipher in javax.crypto 变量和类型 类 描述 class
NullCipher
NullCipher类是一个提供“身份密码”的类 - 一个不转换纯文本的密码。Methods in javax.crypto that return Cipher 变量和类型 方法 描述 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 变量和类型 方法 描述 PKCS8EncodedKeySpec
EncryptedPrivateKeyInfo. getKeySpec(Cipher cipher)
从加密数据中提取附带的PKCS8EncodedKeySpec对象并将其返回。Object
SealedObject. getObject(Cipher c)
检索原始(封装)对象。Constructors in javax.crypto with parameters of type Cipher 构造器 描述 CipherInputStream(InputStream is, Cipher c)
从InputStream和Cipher构造CipherInputStream。CipherOutputStream(OutputStream os, Cipher c)
从OutputStream和Cipher构造CipherOutputStream。SealedObject(Serializable object, Cipher c)
从任何Serializable对象构造一个SealedObject。
-