當前位置: 首頁>>代碼示例>>Java>>正文


Java Nat224.eq方法代碼示例

本文整理匯總了Java中org.bouncycastle.math.raw.Nat224.eq方法的典型用法代碼示例。如果您正苦於以下問題:Java Nat224.eq方法的具體用法?Java Nat224.eq怎麽用?Java Nat224.eq使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.bouncycastle.math.raw.Nat224的用法示例。


在下文中一共展示了Nat224.eq方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: equals

import org.bouncycastle.math.raw.Nat224; //導入方法依賴的package包/類
public boolean equals(Object other)
{
    if (other == this)
    {
        return true;
    }

    if (!(other instanceof SecP224K1FieldElement))
    {
        return false;
    }

    SecP224K1FieldElement o = (SecP224K1FieldElement)other;
    return Nat224.eq(x, o.x);
}
 
開發者ID:ttt43ttt,項目名稱:gwt-crypto,代碼行數:16,代碼來源:SecP224K1FieldElement.java

示例2: sqrt

import org.bouncycastle.math.raw.Nat224; //導入方法依賴的package包/類
/**
 * return a sqrt root - the routine verifies that the calculation returns the right value - if
 * none exists it returns null.
 */
public ECFieldElement sqrt()
{
    int[] c = this.x;
    if (Nat224.isZero(c) || Nat224.isOne(c))
    {
        return this;
    }

    int[] nc = Nat224.create();
    SecP224R1Field.negate(c, nc);

    int[] r = Mod.random(SecP224R1Field.P);
    int[] t = Nat224.create();

    if (!isSquare(c))
    {
        return null;
    }

    while (!trySqrt(nc, r, t))
    {
        SecP224R1Field.addOne(r, r);
    }

    SecP224R1Field.square(t, r);

    return Nat224.eq(c, r) ? new SecP224R1FieldElement(t) : null;
}
 
開發者ID:ttt43ttt,項目名稱:gwt-crypto,代碼行數:33,代碼來源:SecP224R1FieldElement.java

示例3: equals

import org.bouncycastle.math.raw.Nat224; //導入方法依賴的package包/類
public boolean equals(Object other)
{
    if (other == this)
    {
        return true;
    }

    if (!(other instanceof SecP224R1FieldElement))
    {
        return false;
    }

    SecP224R1FieldElement o = (SecP224R1FieldElement)other;
    return Nat224.eq(x, o.x);
}
 
開發者ID:ttt43ttt,項目名稱:gwt-crypto,代碼行數:16,代碼來源:SecP224R1FieldElement.java


注:本文中的org.bouncycastle.math.raw.Nat224.eq方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。