Package jenkins.security
Class DefaultConfidentialStore
java.lang.Object
jenkins.security.ConfidentialStore
jenkins.security.DefaultConfidentialStore
Default portable implementation of
ConfidentialStore
that uses
a directory inside $JENKINS_HOME.
The master key is also stored in this same directory.- Author:
- Kohsuke Kawaguchi
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected byte[]
load
(ConfidentialKey key) Reverse operation ofstore(ConfidentialKey, byte[])
byte[]
randomBytes
(int size) Works likeSecureRandom.nextBytes(byte[])
.protected void
store
(ConfidentialKey key, byte[] payload) Persists the payload ofConfidentialKey
to the disk.Methods inherited from class jenkins.security.ConfidentialStore
get
-
Constructor Details
-
DefaultConfidentialStore
- Throws:
IOException
InterruptedException
-
DefaultConfidentialStore
- Throws:
IOException
InterruptedException
-
-
Method Details
-
store
Persists the payload ofConfidentialKey
to the disk.- Specified by:
store
in classConfidentialStore
- Throws:
IOException
-
load
Reverse operation ofstore(ConfidentialKey, byte[])
- Specified by:
load
in classConfidentialStore
- Returns:
- null the data has not been previously persisted.
- Throws:
IOException
-
randomBytes
public byte[] randomBytes(int size) Description copied from class:ConfidentialStore
Works likeSecureRandom.nextBytes(byte[])
. This enables implementations to consult other entropy sources, if it's available.- Specified by:
randomBytes
in classConfidentialStore
-