forked from ESAPI/esapi-java-legacy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEncryptor.java
More file actions
316 lines (297 loc) · 13.2 KB
/
Copy pathEncryptor.java
File metadata and controls
316 lines (297 loc) · 13.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
/**
* OWASP Enterprise Security API (ESAPI)
*
* This file is part of the Open Web Application Security Project (OWASP)
* Enterprise Security API (ESAPI) project. For details, please see
* <a href="http://www.owasp.org/index.php/ESAPI">http://www.owasp.org/index.php/ESAPI</a>.
*
* Copyright © 2007-2019 - The OWASP Foundation
*
* The ESAPI is published by OWASP under the BSD license. You should read and accept the
* LICENSE before you use, modify, and/or redistribute this software.
*
* @author Jeff Williams <a href="http://www.aspectsecurity.com">Aspect Security</a>
* @author kevin.w.wall@gmail.com
* @created 2007
*/
package org.owasp.esapi;
import javax.crypto.SecretKey;
import org.owasp.esapi.crypto.CipherText;
import org.owasp.esapi.crypto.PlainText;
import org.owasp.esapi.errors.EncryptionException;
import org.owasp.esapi.errors.IntegrityException;
/**
* The Encryptor interface provides a set of methods for performing common
* encryption, random number, and hashing operations. Implementations should
* rely on a strong cryptographic implementation, such as JCE or BouncyCastle.
* Implementors should take care to ensure that they initialize their
* implementation with a strong "master key", and that they protect this secret
* as much as possible.
* <P>
* The main property controlling the selection of the implementation class is the
* property {@code ESAPI.Encryptor} in {@code ESAPI.properties}. Most of the
* the other encryption related properties have property names that start with
* the string "Encryptor.". These properties all you to do things such as
* select the encryption algorithms, the preferred JCE provider, etc.
* </P><P>
* In addition, there are two important properties (initially delivered as unset
* from the ESAPI download) named {@code Encryptor.MasterKey} and
* {@code Encryptor.MasterSalt} that must be set before using ESAPI encryption.
* There is a <i>bash</i>(1) shell script provided with the standard ESAPI distribution
* called 'setMasterKey.sh' that will assist you in setting these two properties. The
* script is in 'src/examples/scripts/setMasterKey.sh'.
* </P><P>
* Possible future enhancements (depending on feedback) are discussed in
* section 4 of
* <a href="http://owasp-esapi-java.googlecode.com/svn/trunk/documentation/esapi4java-core-2.0-crypto-design-goals.doc">
* Design Goals in OWASP ESAPI Cryptography</a>.
*
* @author Jeff Williams (jeff.williams .at. aspectsecurity.com) <a
* href="http://www.aspectsecurity.com">Aspect Security</a>
* @since June 1, 2007
* @see <a href="http://owasp-esapi-java.googlecode.com/svn/trunk/documentation/esapi4java-core-2.0-symmetric-crypto-user-guide.html">User Guide for Symmetric Encryption in ESAPI 2.0</a>
*/
public interface Encryptor {
/**
* Returns a string representation of the hash of the provided plaintext and
* salt. The salt helps to protect against a rainbow table attack by mixing
* in some extra data with the plaintext. Some good choices for a salt might
* be an account name or some other string that is known to the application
* but not to an attacker.
* See <a href="http://www.matasano.com/log/958/enough-with-the-rainbow-tables-what-you-need-to-know-about-secure-password-schemes/">
* this article</a> for more information about hashing as it pertains to password schemes.
*
* @param plaintext
* the plaintext String to encrypt
* @param salt
* the salt to add to the plaintext String before hashing
*
* @return
* the encrypted hash of 'plaintext' stored as a String
*
* @throws EncryptionException
* if the specified hash algorithm could not be found or another problem exists with
* the hashing of 'plaintext'
*/
String hash(String plaintext, String salt) throws EncryptionException;
/**
* Returns a string representation of the hash of the provided plaintext and
* salt. The salt helps to protect against a rainbow table attack by mixing
* in some extra data with the plaintext. Some good choices for a salt might
* be an account name or some other string that is known to the application
* but not to an attacker.
* See <a href="http://www.matasano.com/log/958/enough-with-the-rainbow-tables-what-you-need-to-know-about-secure-password-schemes/">
* this article</a> for more information about hashing as it pertains to password schemes.
*
* @param plaintext
* the plaintext String to encrypt
* @param salt
* the salt to add to the plaintext String before hashing
* @param iterations
* the number of times to iterate the hash
*
* @return
* the encrypted hash of 'plaintext' stored as a String
*
* @throws EncryptionException
* if the specified hash algorithm could not be found or another problem exists with
* the hashing of 'plaintext'
*/
String hash(String plaintext, String salt, int iterations) throws EncryptionException;
/**
* Encrypts the provided plaintext bytes using the cipher transformation
* specified by the property <code>Encryptor.CipherTransformation</code>
* and the <i>master encryption key</i> as specified by the property
* {@code Encryptor.MasterKey} as defined in the <code>ESAPI.properties</code> file.
* </p>
*
* @param plaintext The {@code PlainText} to be encrypted.
* @return the {@code CipherText} object from which the raw ciphertext, the
* IV, the cipher transformation, and many other aspects about
* the encryption detail may be extracted.
* @throws EncryptionException Thrown if something should go wrong such as
* the JCE provider cannot be found, the cipher algorithm,
* cipher mode, or padding scheme not being supported, specifying
* an unsupported key size, specifying an IV of incorrect length,
* etc.
* @see #encrypt(SecretKey, PlainText)
* @since 2.0
*/
CipherText encrypt(PlainText plaintext) throws EncryptionException;
/**
* Encrypts the provided plaintext bytes using the cipher transformation
* specified by the property <code>Encryptor.CipherTransformation</code>
* as defined in the <code>ESAPI.properties</code> file and the
* <i>specified secret key</i>.
* </p><p>
* This method is similar to {@link #encrypt(PlainText)} except that it
* permits a specific {@code SecretKey} to be used for encryption.
*
* @param key The {@code SecretKey} to use for encrypting the plaintext.
* @param plaintext The byte stream to be encrypted. Note if a Java
* {@code String} is to be encrypted, it should be converted
* using {@code "some string".getBytes("UTF-8")}.
* @return the {@code CipherText} object from which the raw ciphertext, the
* IV, the cipher transformation, and many other aspects about
* the encryption detail may be extracted.
* @throws EncryptionException Thrown if something should go wrong such as
* the JCE provider cannot be found, the cipher algorithm,
* cipher mode, or padding scheme not being supported, specifying
* an unsupported key size, specifying an IV of incorrect length,
* etc.
* @see #encrypt(PlainText)
* @since 2.0
*/
CipherText encrypt(SecretKey key, PlainText plaintext)
throws EncryptionException;
/**
* Decrypts the provided {@link CipherText} using the information from it
* and the <i>master encryption key</i> as specified by the property
* {@code Encryptor.MasterKey} as defined in the {@code ESAPI.properties}
* file.
* </p>
* @param ciphertext The {@code CipherText} object to be decrypted.
* @return The {@code PlainText} object resulting from decrypting the specified
* ciphertext. Note that it it is desired to convert the returned
* plaintext byte array to a Java String is should be done using
* {@code new String(byte[], "UTF-8");} rather than simply using
* {@code new String(byte[]);} which uses native encoding and may
* not be portable across hardware and/or OS platforms.
* @throws EncryptionException Thrown if something should go wrong such as
* the JCE provider cannot be found, the cipher algorithm,
* cipher mode, or padding scheme not being supported, specifying
* an unsupported key size, or incorrect encryption key was
* specified or a {@code PaddingException} occurs.
* @see #decrypt(SecretKey, CipherText)
*/
PlainText decrypt(CipherText ciphertext) throws EncryptionException;
/**
* Decrypts the provided {@link CipherText} using the information from it
* and the <i>specified secret key</i>.
* </p><p>
* This decrypt method is similar to {@link #decrypt(CipherText)} except that
* it allows decrypting with a secret key other than the <i>master secret key</i>.
* </p>
* @param key The {@code SecretKey} to use for encrypting the plaintext.
* @param ciphertext The {@code CipherText} object to be decrypted.
* @return The {@code PlainText} object resulting from decrypting the specified
* ciphertext. Note that it it is desired to convert the returned
* plaintext byte array to a Java String is should be done using
* {@code new String(byte[], "UTF-8");} rather than simply using
* {@code new String(byte[]);} which uses native encoding and may
* not be portable across hardware and/or OS platforms.
* @throws EncryptionException Thrown if something should go wrong such as
* the JCE provider cannot be found, the cipher algorithm,
* cipher mode, or padding scheme not being supported, specifying
* an unsupported key size, or incorrect encryption key was
* specified or a {@code PaddingException} occurs.
* @see #decrypt(CipherText)
*/
PlainText decrypt(SecretKey key, CipherText ciphertext) throws EncryptionException;
/**
* Create a digital signature for the provided data and return it in a
* string.
* <p>
* <b>Limitations:</b> A new public/private key pair used for ESAPI 2.0 digital
* signatures with this method and {@link #verifySignature(String, String)}
* are dynamically created when the default reference implementation class,
* {@link org.owasp.esapi.reference.crypto.JavaEncryptor} is first created.
* Because this key pair is not persisted nor is the public key shared,
* this method and the corresponding {@link #verifySignature(String, String)}
* can not be used with expected results across JVM instances. This limitation
* will be addressed in ESAPI 2.1.
* </p>
*
* @param data
* the data to sign
*
* @return
* the digital signature stored as a String
*
* @throws EncryptionException
* if the specified signature algorithm cannot be found
*/
String sign(String data) throws EncryptionException;
/**
* Verifies a digital signature (created with the sign method) and returns
* the boolean result.
* <p>
* <b>Limitations:</b> A new public/private key pair used for ESAPI 2.0 digital
* signatures with this method and {@link #sign(String)}
* are dynamically created when the default reference implementation class,
* {@link org.owasp.esapi.reference.crypto.JavaEncryptor} is first created.
* Because this key pair is not persisted nor is the public key shared,
* this method and the corresponding {@link #sign(String)}
* can not be used with expected results across JVM instances. This limitation
* will be addressed in ESAPI 2.1.
* </p>
* @param signature
* the signature to verify against 'data'
* @param data
* the data to verify against 'signature'
*
* @return
* true, if the signature is verified, false otherwise
*/
boolean verifySignature(String signature, String data);
/**
* Creates a seal that binds a set of data and includes an expiration timestamp.
*
* @param data
* the data to seal
* @param timestamp
* the absolute expiration date of the data, expressed as seconds since the epoch
*
* @return
* the seal
*
* @throws IntegrityException
*/
String seal(String data, long timestamp) throws IntegrityException;
/**
* Unseals data (created with the seal method) and throws an exception
* describing any of the various problems that could exist with a seal, such
* as an invalid seal format, expired timestamp, or decryption error.
*
* @param seal
* the sealed data
*
* @return
* the original (unsealed) data
*
* @throws EncryptionException
* if the unsealed data cannot be retrieved for any reason
*/
String unseal( String seal ) throws EncryptionException;
/**
* Verifies a seal (created with the seal method) and throws an exception
* describing any of the various problems that could exist with a seal, such
* as an invalid seal format, expired timestamp, or data mismatch.
*
* @param seal
* the seal to verify
*
* @return
* true, if the seal is valid. False otherwise
*/
boolean verifySeal(String seal);
/**
* Gets an absolute timestamp representing an offset from the current time to be used by
* other functions in the library.
*
* @param offset
* the offset to add to the current time
*
* @return
* the absolute timestamp
*/
long getRelativeTimeStamp( long offset );
/**
* Gets a timestamp representing the current date and time to be used by
* other functions in the library.
*
* @return
* a timestamp representing the current time
*/
long getTimeStamp();
}