(Date date)
| 212 | } |
| 213 | |
| 214 | public static String format(Date date) { |
| 215 | DateFormat format = new SimpleDateFormat(DATE_FORMAT); |
| 216 | format.setTimeZone(UTC); |
| 217 | return format.format(date); |
| 218 | } |
| 219 | |
| 220 | public static byte [] randomBytes(int num) { |
| 221 | byte [] data = new byte[num]; |
no outgoing calls
no test coverage detected