gluu
公開メンバ関数 | 非公開変数類 | 静的非公開変数類 | 全メンバ一覧
org.gluu.oxtrust.ldap.service.EncryptionService クラス
org.gluu.oxtrust.ldap.service.EncryptionService の継承関係図
Inheritance graph
org.gluu.oxtrust.ldap.service.EncryptionService 連携図
Collaboration graph

公開メンバ関数

String decrypt (String encryptedString) throws EncryptionException
 
String encrypt (String unencryptedString) throws EncryptionException
 
Properties decryptProperties (Properties connectionProperties)
 
Properties decryptAllProperties (Properties connectionProperties)
 

非公開変数類

StringEncrypter stringEncrypter
 

静的非公開変数類

static final long serialVersionUID = -5813201875981117513L
 

詳解

Allows to decrypted properties with passwords

著者
Yuriy Movchan Date: 09/23/2014

関数詳解

◆ decrypt()

String org.gluu.oxtrust.ldap.service.EncryptionService.decrypt ( String  encryptedString) throws EncryptionException
inline
34  {
35  if (StringHelper.isEmpty(encryptedString)) {
36  return null;
37  }
38 
39  return stringEncrypter.decrypt(encryptedString);
40  }
StringEncrypter stringEncrypter
Definition: EncryptionService.java:32

◆ decryptAllProperties()

Properties org.gluu.oxtrust.ldap.service.EncryptionService.decryptAllProperties ( Properties  connectionProperties)
inline
54  {
55  return PropertiesDecrypter.decryptAllProperties(stringEncrypter, connectionProperties);
56  }
StringEncrypter stringEncrypter
Definition: EncryptionService.java:32

◆ decryptProperties()

Properties org.gluu.oxtrust.ldap.service.EncryptionService.decryptProperties ( Properties  connectionProperties)
inline
50  {
51  return PropertiesDecrypter.decryptProperties(stringEncrypter, connectionProperties);
52  }
StringEncrypter stringEncrypter
Definition: EncryptionService.java:32

◆ encrypt()

String org.gluu.oxtrust.ldap.service.EncryptionService.encrypt ( String  unencryptedString) throws EncryptionException
inline
42  {
43  if (StringHelper.isEmpty(unencryptedString)) {
44  return null;
45  }
46 
47  return stringEncrypter.encrypt(unencryptedString);
48  }
StringEncrypter stringEncrypter
Definition: EncryptionService.java:32

メンバ詳解

◆ serialVersionUID

final long org.gluu.oxtrust.ldap.service.EncryptionService.serialVersionUID = -5813201875981117513L
staticprivate

◆ stringEncrypter

StringEncrypter org.gluu.oxtrust.ldap.service.EncryptionService.stringEncrypter
private

このクラス詳解は次のファイルから抽出されました: