2012-05-21 04:12:37 -07:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2011-12-21 08:44:08 -08:00
|
|
|
|
|
|
|
package org.mozilla.gecko.sync.jpake;
|
|
|
|
|
|
|
|
import java.math.BigInteger;
|
2012-02-15 22:05:52 -08:00
|
|
|
|
|
|
|
import org.mozilla.gecko.sync.Utils;
|
2011-12-21 08:44:08 -08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper Function to generate a uniformly random value in [0, r).
|
|
|
|
*/
|
|
|
|
public class JPakeNumGeneratorRandom implements JPakeNumGenerator {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public BigInteger generateFromRange(BigInteger r) {
|
2012-02-15 22:05:52 -08:00
|
|
|
return Utils.generateBigIntegerLessThan(r);
|
2011-12-21 08:44:08 -08:00
|
|
|
}
|
|
|
|
}
|