- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我被要求为我的 RSA 加密算法创建 512 位整数类型。我从最简单的位运算 OR, AND, XOR, NOT
开始,然后使用提到的运算实现了加法、减法等。不幸的是,经过多次测试,它在超过 128 位时非常慢。
当我发现具有 RSA 生成功能的网站时,我感到很惊讶,它在几毫秒内使用显然是 javascript 生成了 key 。我如何改进我的算法以获得更高的效率?或者更好的问题是:proffesionals 如何实现如此大的类型这样的表现。
这是我的代码:
public class BigInt {
public static final int BYTE = 8;
public static final int DEFAULT_SIZE = 128;
public final static BigInt ZERO = new BigInt(0);
public final static BigInt ONE = new BigInt(1);
public final static BigInt TEN = new BigInt(10);
private boolean[] number;
private Endianness endianness = Endianness.BIG_ENDIAN;
public BigInt() {
number = new boolean[DEFAULT_SIZE];
}
public BigInt(boolean[] number) {
this.number = number;
}
public BigInt(int integerNumber) {
this();
boolean isNegative = false;
if (integerNumber < 0) {
isNegative = true;
integerNumber = Math.abs(integerNumber);
}
for (int i = number.length - 1; i >= 1 && integerNumber >= 1; i--) {
number[i] = integerNumber % 2 == 1;
integerNumber >>= 1;
}
if (isNegative) {
number = new BigInt(number).not().add(ONE).number;
}
}
public BigInt(String binaryString) throws InvalidBinaryStringException {
this();
for (int i = binaryString.length() - 1, j = number.length - 1;
i >= 0 && j >= 0; i--, j--) {
if (binaryString.charAt(i) != '1' && binaryString.charAt(i) != '0') {
throw new InvalidBinaryStringException(binaryString);
}
number[j] = (binaryString.charAt(i) - '0') == 1;
}
}
public BigInt(BigInt copy) {
this();
System.arraycopy(copy.number, 0, number, 0, copy.number.length);
}
public BigInt add(BigInt component) {
BigInt a, b;
BigInt x = new BigInt(this);
BigInt y = new BigInt(component);
do {
a = x.and(y);
b = x.xor(y);
x = a.shiftLeft(1);
y = b;
} while (!a.equals(ZERO));
return b;
}
public BigInt sub(BigInt subtrahend) {
return add(subtrahend.not().add(new BigInt(ONE)));
}
public BigInt mul(BigInt multiplier) {
BigInt m = new BigInt(ONE), z = new BigInt(ZERO);
BigInt x = new BigInt(this), y = new BigInt(multiplier);
if (x.lessThen(ZERO)) {
x = x.not().add(ONE);
y = y.not().add(ONE);
}
while (x.greaterThenEqual(m) && !y.equals(ZERO)) {
if (!x.and(m).equals(ZERO)) {
z = y.add(z);
}
y = y.shiftLeft(1);
m = m.shiftLeft(1);
}
return z;
}
public BigInt div(BigInt divisor) {
BigInt mask = new BigInt(ONE);
BigInt quotient = new BigInt(ZERO);
BigInt numerator = new BigInt(this), denominator = new BigInt(divisor);
if (numerator.lessThen(ZERO)) {
numerator = numerator.not().add(ONE);
}
if (denominator.lessThen(ZERO)) {
denominator = denominator.not().add(ONE);
}
while (denominator.lessThenEqual(numerator)) { // PROBLEM
denominator = denominator.shiftLeft(1);
mask = mask.shiftLeft(1);
}
while (mask.greaterThen(ONE)) {
denominator = denominator.shiftRight(1);
mask = mask.shiftRight(1);
if (numerator.greaterThenEqual(denominator)) {
numerator = numerator.sub(denominator);
quotient = quotient.or(mask);
}
}
if (number[0] != divisor.number[0]) {
return quotient.not().add(ONE);
}
return quotient;
}
public BigInt mod(BigInt y) {
// (x - y*(x/y))
BigInt x = new BigInt(this);
BigInt right = x.div(y);
BigInt mid = y.mul(right);
return x.sub(mid);
}
//completly inefficient for numbers larger than 32 bit
@Deprecated
public BigInt div2(BigInt divisor) {
BigInt c = new BigInt(ZERO), sign = new BigInt(ZERO);
BigInt x = new BigInt(this), y = new BigInt(divisor);
if (x.lessThen(ZERO)) {
x = x.not().add(ONE);
sign = sign.xor(ONE);
}
if (y.lessThen(ZERO)) {
y = y.not().add(ONE);
sign = sign.xor(ONE);
}
if (!y.equals(ZERO)) {
while (x.greaterThenEqual(y)) {
x = x.sub(y);
c = c.add(ONE);
}
}
if (!sign.equals(ZERO)) {
c = c.not().add(ONE);
}
return c;
}
//doesn't work for big numbers close to maximum bit
@Deprecated
public BigInt mod2(BigInt mod) {
BigInt y = new BigInt(this);
BigInt x = new BigInt(mod);
BigInt p = new BigInt(x);
if (y.lessThen(ZERO)) {
y = y.not().add(ONE);
}
if (p.lessThen(ZERO)) {
p = p.not().add(ONE);
x = x.not().add(ONE);
}
while (p.lessThen(y)) { //forever loop
p = p.shiftLeft(1);
}
while (p.greaterThenEqual(x)) {
if (y.greaterThenEqual(p)) {
y = y.sub(p);
}
p = p.shiftRight(1);
}
if (number[0]) {
y = y.not().add(ONE);
}
return y;
}
@Override
public boolean equals(Object obj) {
if (obj == null)
return false;
if (obj == this)
return true;
if (!(obj instanceof BigInt))
return false;
BigInt bigInt = (BigInt) obj;
for (int i = 0; i < bigInt.number.length; i++) {
if (number[i] != bigInt.number[i]) {
return false;
}
}
if (!endianness.equals(bigInt.endianness)) {
return false;
}
return true;
}
public boolean lessThen(BigInt num) {
if (equals(num)) {
return false;
}
if (number[0] && !num.number[0]) {
return true;
} else if (!number[0] && num.number[0]) {
return false;
}
BigInt left = null, right = null;
if (number[0]) {
left = not().add(ONE);
right = num.not().add(ONE);
} else {
left = this;
right = num;
}
for (int i = 1; i < number.length; i++) {
if (left.number[i] != right.number[i]) {
if (number[0]) {
return !(!left.number[i] && right.number[i]);
} else {
return !left.number[i] && right.number[i];
}
}
}
return false;
}
public boolean lessThenEqual(BigInt num) {
if (equals(num)) {
return true;
}
return lessThen(num);
}
public boolean greaterThen(BigInt num) {
return !lessThen(num);
}
public boolean greaterThenEqual(BigInt num) {
if (equals(num)) {
return true;
}
return greaterThen(num);
}
/**
* BITWISE OPERATORS*
*/
//logical bitwise shift lefts
public BigInt shiftLeft(int n) {
//IT WORKS BECAUSE NEW OBJECT IS SET TO 0;
BigInt shifted = new BigInt();
for (int i = 0; i < number.length - n; i++) {
shifted.number[i] = number[i + n];
}
return shifted;
}
//logical bitwise shift right
public BigInt shiftRight(int n) {
BigInt shifted = new BigInt();
for (int i = number.length - 1; i >= n; i--) {
shifted.number[i] = number[i - n];
}
boolean sign = number[0];
for (int i = 0; i < n; i++) {
shifted.number[i] = sign;
}
return shifted;
}
//bitwise or |
public BigInt or(BigInt num) {
BigInt newInt = new BigInt();
for (int i = 0; i < number.length; i++) {
newInt.number[i] = number[i] | num.number[i];
}
return newInt;
}
//bitwise and &
public BigInt and(BigInt num) {
BigInt newInt = new BigInt();
for (int i = 0; i < number.length; i++) {
newInt.number[i] = number[i] & num.number[i];
}
return newInt;
}
//bitwise exclusive or ^
public BigInt xor(BigInt num) {
BigInt newInt = new BigInt();
for (int i = 0; i < number.length; i++) {
newInt.number[i] = number[i] ^ num.number[i];
}
return newInt;
}
public BigInt not() {
BigInt negate = new BigInt();
for (int i = 0; i < number.length; i++) {
negate.number[i] = !number[i];
}
return negate;
}
@Override
public String toString() {
/* StringBuilder binaryRepr = new StringBuilder();
for (byte b : number) {
binaryRepr.append(b);
}*/
String decRepr = "";
BigInt copy = new BigInt(this);
if (copy.lessThen(ZERO)) {
copy = copy.not().add(ONE);
}
while (copy.greaterThenEqual(ONE)) {
BigInt rem = copy.mod(TEN);
copy = copy.div(TEN);
decRepr = String.valueOf(Integer.parseInt(getDecimalRemainder(rem), 2)) + decRepr;
}
if (number[0]) {
return "-" + decRepr;// + binaryRepr.toString();
}
return decRepr;// + binaryRepr.toString();
//return binaryRepr.toString();
}
private String getDecimalRemainder(BigInt copy) {
String decimalString = "";
for (int i = copy.number.length - 1; i >= copy.number.length - 4; i--) {
decimalString = (copy.number[i] ? "1" : "0") + decimalString;
}
return decimalString;
}
public String toBinaryString() {
StringBuilder binaryString = new StringBuilder();
boolean isFirstBit = false;
for (boolean b: number) {
if (b) {
isFirstBit = true;
}
if (isFirstBit) {
binaryString.append(b);
}
}
return binaryString.toString();
}
public static BigInt nextBigInt(BigInt min, BigInt max) {
BigInt pseudo = new BigInt();
Random rnd = new Random();
for (int i = 2; i < pseudo.number.length; i++) {
pseudo.number[i] = rnd.nextBoolean();
}
return pseudo.mod(max).add(min);
}
public static void main(String[] args) {
String big = "";
for(int i = 0; i < 126; i++) {
big += "1";
}
StopWatch stopWatch = new StopWatch();
System.out.println(new BigInt(big));
System.out.println(stopWatch.elapsedTime());
}
}
最佳答案
而不是 boolean[]
使用 int[]
来保存你的数字的位。通过这种方式,您可以更快地实现大多数操作,一次操作 30 位而不是 1 位。
您可以保留数组元素 0 中的最低 30 位和数组元素 1 中接下来的 30 位,依此类推。使用此结构可以直接实现逻辑操作(&、|、^)。
对于算术运算,您必须跟踪进位。例如两个数组元素0相加后,如果结果大于30位,则清除溢出位,数组元素1之和加1。
可以使用 long
进行乘法运算:两个 int
值的乘积总是适合 long
。使用类似手乘两个小数的方法。只需使用 30 位数字代替数字 0-9。
对于只有 512 位长的数字,更复杂的乘法(如 karatsuba)无法带来返回。
虽然实现和优化这些操作很有趣,但在实现过程中也很容易出现细微的错误。因此,如果您对生产代码执行此操作,请务必编写大量单元测试。使用经过良好测试的第三方实现可能比您自己实现更好。
关于java - 实现高效的 512 位整数类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21099347/
我正在尝试编写一个相当多态的库。我遇到了一种更容易表现出来却很难说出来的情况。它看起来有点像这样: {-# LANGUAGE ScopedTypeVariables #-} {-# LANGUAGE
谁能解释一下这个表达式是如何工作的? type = type || 'any'; 这是否意味着如果类型未定义则使用“任意”? 最佳答案 如果 type 为“falsy”(即 false,或 undef
我有一个界面,在IAnimal.fs中, namespace Kingdom type IAnimal = abstract member Eat : Food -> unit 以及另一个成功
这个问题在这里已经有了答案: 关闭 10 年前。 Possible Duplicate: What is the difference between (type)value and type(va
在 C# 中,default(Nullable) 之间有区别吗? (或 default(long?) )和 default(long) ? Long只是一个例子,它可以是任何其他struct类型。 最
假设我有一个案例类: case class Foo(num: Int, str: String, bool: Boolean) 现在我还有一个简单的包装器: sealed trait Wrapper[
这个问题在这里已经有了答案: Create C# delegate type with ref parameter at runtime (1 个回答) 关闭 2 年前。 为了即时创建委托(dele
我正在尝试获取图像的 dct。一开始我遇到了错误 The function/feature is not implemented (Odd-size DCT's are not implemented
我正在尝试使用 AFNetworking 的 AFPropertyListRequestOperation,但是当我尝试下载它时,出现错误 预期的内容类型{( “应用程序/x-plist” )}, 得
我在下面收到错误。我知道这段代码的意思,但我不知道界面应该是什么样子: Element implicitly has an 'any' type because index expression is
我尝试将 SignalType 从 ReactiveCocoa 扩展为自定义 ErrorType,代码如下所示 enum MyError: ErrorType { // .. cases }
我无法在任何其他问题中找到答案。假设我有一个抽象父类(super class) Abstract0,它有两个子类 Concrete1 和 Concrete1。我希望能够在 Abstract0 中定义类
我想知道为什么这个索引没有用在 RANGE 类型中,而是用在 INDEX 中: 索引: CREATE INDEX myindex ON orders(order_date); 查询: EXPLAIN
我正在使用 RxJava,现在我尝试通过提供 lambda 来订阅可观察对象: observableProvider.stringForKey(CURRENT_DELETED_ID) .sub
我已经尝试了几乎所有解决问题的方法,其中包括。为 提供类型使用app.use(express.static('public'))还有更多,但我似乎无法为此找到解决方案。 index.js : imp
以下哪个 CSS 选择器更快? input[type="submit"] { /* styles */ } 或 [type="submit"] { /* styles */ } 只是好
我不知道这个设置有什么问题,我在 IDEA 中获得了所有注释(@Controller、@Repository、@Service),它在行号左侧显示 bean,然后转到该 bean。 这是错误: 14-
我听从了建议 registering java function as a callback in C function并且可以使用“简单”类型(例如整数和字符串)进行回调,例如: jstring j
有一些 java 类,加载到 Oracle 数据库(版本 11g)和 pl/sql 函数包装器: create or replace function getDataFromJava( in_uLis
我已经从 David Walsh 的 css 动画回调中获取代码并将其修改为 TypeScript。但是,我收到一个错误,我不知道为什么: interface IBrowserPrefix { [
我是一名优秀的程序员,十分优秀!