Class SecureString
java.lang.Object
org.elasticsearch.common.settings.SecureString
- All Implemented Interfaces:
Closeable
,AutoCloseable
,CharSequence
A String implementations which allows clearing the underlying char array.
-
Constructor Summary
ConstructorDescriptionSecureString(char[] chars)
Constructs a new SecureString which controls the passed in char array.Deprecated.Only use for compatibility between deprecated string settings and new secure strings -
Method Summary
Modifier and TypeMethodDescriptionchar
charAt(int index)
clone()
Returns a new copy of this object that is backed by its own char array.void
close()
Closes the string by clearing the underlying char array.boolean
Constant time equality to avoid potential timing attacks.char[]
getChars()
Returns the underlying char[].int
hashCode()
int
length()
subSequence(int start, int end)
toString()
Convert to aString
.Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.lang.CharSequence
chars, codePoints, isEmpty
-
Constructor Details
-
SecureString
public SecureString(char[] chars)Constructs a new SecureString which controls the passed in char array. Note: When this instance is closed, the array will be zeroed out. -
SecureString
Deprecated.Only use for compatibility between deprecated string settings and new secure stringsConstructs a new SecureString from an existing String. NOTE: This is not actually secure, since the provided String cannot be deallocated, but this constructor allows for easy compatibility between new and old apis.
-
-
Method Details
-
equals
Constant time equality to avoid potential timing attacks. -
hashCode
public int hashCode() -
length
public int length()- Specified by:
length
in interfaceCharSequence
-
charAt
public char charAt(int index)- Specified by:
charAt
in interfaceCharSequence
-
subSequence
- Specified by:
subSequence
in interfaceCharSequence
-
toString
Convert to aString
. This should only be used with APIs that do not takeCharSequence
.- Specified by:
toString
in interfaceCharSequence
- Overrides:
toString
in classObject
-
close
public void close()Closes the string by clearing the underlying char array.- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
-
clone
Returns a new copy of this object that is backed by its own char array. Closing the new instance has no effect on the instance it was created from. This is useful for APIs which accept a char array and you want to be safe about the API potentially modifying the char array. For example:try (SecureString copy = secureString.clone()) { // pass thee char[] to a external API PasswordAuthentication auth = new PasswordAuthentication(username, copy.getChars()); ... }
-
getChars
public char[] getChars()Returns the underlying char[]. This is a dangerous operation as the array may be modified while it is being used by other threads or a consumer may modify the values in the array. For safety, it is preferable to useclone()
and pass its chars to the consumer when the chars are needed multiple times.
-