-
-
Notifications
You must be signed in to change notification settings - Fork 271
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
classlib: add minimal SecureRandom implementation
- Utilizes JavaScript's window.crypto.getRandomValues() when available, otherwise uses the general Math.random() as fallback. - No support for providers - No support for proper randomness sources on non-JS backends
- Loading branch information
1 parent
1964235
commit 9280992
Showing
3 changed files
with
211 additions
and
0 deletions.
There are no files selected for viewing
38 changes: 38 additions & 0 deletions
38
classlib/src/main/java/org/teavm/classlib/java/security/TGeneralSecurityException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
/* | ||
* Copyright 2023 Bernd Busse. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.teavm.classlib.java.security; | ||
|
||
import org.teavm.classlib.java.lang.TException; | ||
import org.teavm.classlib.java.lang.TThrowable; | ||
|
||
public class TGeneralSecurityException extends TException { | ||
|
||
public TGeneralSecurityException() { | ||
super(); | ||
} | ||
|
||
public TGeneralSecurityException(String message) { | ||
super(message); | ||
} | ||
|
||
public TGeneralSecurityException(String message, TThrowable cause) { | ||
super(message, cause); | ||
} | ||
|
||
public TGeneralSecurityException(TThrowable cause) { | ||
super(cause); | ||
} | ||
} |
37 changes: 37 additions & 0 deletions
37
classlib/src/main/java/org/teavm/classlib/java/security/TNoSuchAlgorithmException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/* | ||
* Copyright 2023 Bernd Busse. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.teavm.classlib.java.security; | ||
|
||
import org.teavm.classlib.java.lang.TThrowable; | ||
|
||
public class TNoSuchAlgorithmException extends TGeneralSecurityException { | ||
|
||
public TNoSuchAlgorithmException() { | ||
super(); | ||
} | ||
|
||
public TNoSuchAlgorithmException(String message) { | ||
super(message); | ||
} | ||
|
||
public TNoSuchAlgorithmException(String message, TThrowable cause) { | ||
super(message, cause); | ||
} | ||
|
||
public TNoSuchAlgorithmException(TThrowable cause) { | ||
super(cause); | ||
} | ||
} |
136 changes: 136 additions & 0 deletions
136
classlib/src/main/java/org/teavm/classlib/java/security/TSecureRandom.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,136 @@ | ||
/* | ||
* Copyright 2023 Bernd Busse. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.teavm.classlib.java.security; | ||
|
||
import org.teavm.classlib.PlatformDetector; | ||
import org.teavm.classlib.java.util.TRandom; | ||
import org.teavm.jso.crypto.Crypto; | ||
import org.teavm.jso.typedarrays.Uint8Array; | ||
|
||
public class TSecureRandom extends TRandom { | ||
|
||
/** stored instance for seed generation in getSeed() */ | ||
private static TSecureRandom seedGenerator; | ||
|
||
public TSecureRandom() { | ||
} | ||
|
||
public TSecureRandom(@SuppressWarnings("unused") byte[] seed) { | ||
} | ||
|
||
public static TSecureRandom getInstance(String algorithm) | ||
throws TNoSuchAlgorithmException { | ||
if (!(algorithm.equals("NativePRNG") | ||
|| algorithm.equals("NativePRNGBlocking") | ||
|| algorithm.equals("NativePRNGNonBlocking"))) { | ||
throw new TNoSuchAlgorithmException(); | ||
} | ||
return new TSecureRandom(); | ||
} | ||
|
||
public String getAlgorithm() { | ||
if (PlatformDetector.isJavaScript() && Crypto.isSupported()) { | ||
return "NativePRNG"; | ||
} else { | ||
return "unknown"; | ||
} | ||
} | ||
|
||
@Override | ||
public void setSeed(@SuppressWarnings("unused") long seed) { | ||
} | ||
|
||
public void setSeed(@SuppressWarnings("unused") byte[] seed) { | ||
} | ||
|
||
public void reseed() { | ||
} | ||
|
||
protected int next(int bits) { | ||
int numBytes = (bits + 7) / 8; | ||
byte[] bytes = new byte[numBytes]; | ||
nextBytes(bytes); | ||
|
||
int val = 0; | ||
for (int i = 0; i < numBytes; ++i) { | ||
val = (val << 8) | (bytes[i] & 0xFF); | ||
} | ||
|
||
return val >>> (numBytes * 8 - bits); | ||
} | ||
|
||
@Override | ||
public void nextBytes(byte[] bytes) { | ||
if (PlatformDetector.isJavaScript() && Crypto.isSupported()) { | ||
Uint8Array buffer = Uint8Array.create(bytes.length); | ||
Crypto.current().getRandomValues(buffer); | ||
|
||
for (int i = 0; i < bytes.length; ++i) { | ||
bytes[i] = (byte) buffer.get(i); | ||
} | ||
} else { | ||
// TODO: Implement wrapper to JavaScript (Crypto) for WASM backend | ||
// TODO: Implement proper randomness source in C backend (/dev/urandom, etc.) | ||
// Fall back to generic random implementation | ||
super.nextBytes(bytes); | ||
} | ||
} | ||
|
||
@Override | ||
public int nextInt() { | ||
return next(32); | ||
} | ||
|
||
@Override | ||
public int nextInt(int n) { | ||
if (n <= 0) { | ||
throw new IllegalArgumentException(); | ||
} | ||
return (int) (nextDouble() * n); | ||
} | ||
|
||
@Override | ||
public long nextLong() { | ||
return ((long) nextInt() << 32) | nextInt(); | ||
} | ||
|
||
@Override | ||
public float nextFloat() { | ||
return (float) nextDouble(); | ||
} | ||
|
||
@Override | ||
public double nextDouble() { | ||
return (((long) next(26) << 27) + next(27)) / (double) (1L << 53); | ||
} | ||
|
||
public static byte[] getSeed(int numBytes) { | ||
if (seedGenerator == null) { | ||
seedGenerator = new TSecureRandom(); | ||
} | ||
return seedGenerator.generateSeed(numBytes); | ||
} | ||
|
||
public byte[] generateSeed(int numBytes) { | ||
if (numBytes < 0) { | ||
throw new IllegalArgumentException(); | ||
} | ||
|
||
byte[] bytes = new byte[numBytes]; | ||
nextBytes(bytes); | ||
return bytes; | ||
} | ||
} |