static Uint8List random(int len) { final bytes = SafeBuffer.alloc(len); crypto.fillRandomBytes(bytes); return bytes; }