(int size)
| 11 | } |
| 12 | |
| 13 | public static byte @NotNull [] nextBytes(int size) { |
| 14 | var bytes = new byte[size]; |
| 15 | getInstance().nextBytes(bytes); |
| 16 | return bytes; |
| 17 | } |
| 18 | |
| 19 | public static @NotNull Binary nextBinary(int size) { |
| 20 | return new Binary(nextBytes(size)); |