Skip to content

Instantly share code, notes, and snippets.

View sXakil's full-sized avatar
:octocat:
Working Remotely

Shakil Ahmmed sXakil

:octocat:
Working Remotely
View GitHub Profile
@sXakil
sXakil / GenPass.java
Created December 2, 2018 16:12
Generate a random alphaneumeric password
package com.ums.pau.resources;
import java.security.SecureRandom;
import java.util.ArrayList;
import java.util.List;
public class GenPass {
private String str;
private StringBuilder sb;
private List<Integer> l;
public GenPass() {