Android Open Source - Mini-Password-Manager Randoms






From Project

Back to project page Mini-Password-Manager.

License

The source code is released under:

MIT License

If you think the Android project Mini-Password-Manager listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/*
 *   Copyright 2012 Hai Bison// w w w .ja va  2s.c  o  m
 *
 *   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 com.haibison.android.lockpattern.util;

import java.util.List;
import java.util.Random;

import com.haibison.android.lockpattern.collect.Lists;

/**
 * Random utilities.
 * 
 * @author Hai Bison
 * 
 */
public class Randoms {

    private static final Random RANDOM = new Random();

    /**
     * This is singleton class.
     */
    private Randoms() {
    }// Random()

    /**
     * Generates a random integer.
     * 
     * @return the random integer.
     */
    public static int randInt() {
        return RANDOM.nextInt((int) (System.nanoTime() % Integer.MAX_VALUE));
    }// randInt()

    /**
     * Generates a random integer within {@code [0, n)}.
     * 
     * @param n
     *            an arbitrary value.
     * @return the random integer.
     */
    public static int randInt(int n) {
        return n > 0 ? randInt() % n : 0;
    }// randInt()

    /**
     * Generates a random integer array which has length of {@code end - start},
     * and is filled by all values from {@code start} to {@code end - 1} in
     * randomized orders.
     * 
     * @param start
     *            the starting value.
     * @param end
     *            the ending value.
     * @return the random integer array. If {@code end <= start}, an empty array
     *         returns.
     */
    public static int[] randIntArray(int start, int end) {
        if (end <= start)
            return new int[0];

        final List<Integer> values = Lists.newArrayList();
        for (int i = start; i < end; i++)
            values.add(i);

        final int[] result = new int[values.size()];
        for (int i = 0; i < result.length; i++) {
            int k = randInt(values.size());
            result[i] = values.get(k);
            values.remove(k);
        }// for

        return result;
    }// randIntArray()

    /**
     * Generates a random integer array which has length of {@code end}, and is
     * filled by all values from {@code 0} to {@code end - 1} in randomized
     * orders.
     * 
     * @param end
     *            the ending value.
     * @return the random integer array. If {@code end <= start}, an empty array
     *         returns.
     */
    public static int[] randIntArray(int end) {
        return randIntArray(0, end);
    }// randIntArray()

}




Java Source Code List

com.buildacode.tpmfree.ApplicationTest.java
com.haibison.android.lockpattern.ApplicationTest.java
com.haibison.android.lockpattern.LockPatternActivity.java
com.haibison.android.lockpattern.collect.Lists.java
com.haibison.android.lockpattern.util.IEncrypter.java
com.haibison.android.lockpattern.util.InvalidEncrypterException.java
com.haibison.android.lockpattern.util.LoadingDialog.java
com.haibison.android.lockpattern.util.Randoms.java
com.haibison.android.lockpattern.util.Settings.java
com.haibison.android.lockpattern.util.SimpleWeakEncryption.java
com.haibison.android.lockpattern.util.Sys.java
com.haibison.android.lockpattern.util.UI.java
com.haibison.android.lockpattern.widget.LockPatternUtils.java
com.haibison.android.lockpattern.widget.LockPatternView.java
com.haibison.android.lockpattern.widget.LockPatternView_v14.java
com.haibison.android.lockpattern.widget.ViewCompat_v16.java
com.karthikmlore.floatingbutton.ApplicationTest.java
com.karthikmlore.minipasswordmanager.Crypter.java
com.karthikmlore.minipasswordmanager.DBHelper.java
com.karthikmlore.minipasswordmanager.Login.java
com.karthikmlore.minipasswordmanager.NewPattern.java
com.karthikmlore.minipasswordmanager.RecordData.java
com.karthikmlore.minipasswordmanager.Records.java
com.karthikmlore.minipasswordmanager.ServiceListAdapter.java
com.karthikmlore.minipasswordmanager.ServiceList.java
com.karthikmlore.minipasswordmanager.SetService.java
com.shamanland.fab.FloatingActionButton.java
com.shamanland.fab.ScrollDetector.java
com.shamanland.fab.ShowHideOnScroll.java