HomeSort by relevance Sort by last modified time
    Searched full:curve (Results 201 - 225 of 1077) sorted by null

1 2 3 4 5 6 7 891011>>

  /prebuilts/go/linux-x86/src/crypto/x509/
pkcs8.go 75 oid, ok := oidFromNamedCurve(k.Curve)
77 return nil, errors.New("x509: unknown curve while marshalling to PKCS#8")
82 return nil, errors.New("x509: failed to marshal curve OID: " + err.Error())
  /prebuilts/vndk/v27/x86/arch-x86-x86/shared/vndk-core/
libkeymaster_staging.so 
  /prebuilts/vndk/v27/x86_64/arch-x86-x86_64/shared/vndk-core/
libkeymaster_staging.so 
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/
KeyPairGeneratorSpi.java 204 ECCurve curve = EC5Util.convertCurve(p.getCurve()); local
205 ECPoint g = EC5Util.convertPoint(curve, p.getGenerator(), false);
208 ECDomainParameters dp = new ECDomainParameters(curve, g, n, h);
215 // NOTE: Don't bother with custom curves here as the curve will be converted to JCE type shortly
232 throw new InvalidAlgorithmParameterException("unknown curve OID: " + curveName);
238 throw new InvalidAlgorithmParameterException("unknown curve name: " + curveName);
BCECPublicKey.java 77 ECCurve curve = spec.getParams().getCurve(); local
78 EllipticCurve ellipticCurve = EC5Util.convertCurve(curve, spec.getParams().getSeed());
80 // this may seem a little long-winded but it's how we pick up the custom curve.
195 ECCurve curve = EC5Util.getCurve(configuration, params); local
196 ecSpec = EC5Util.convertToSpec(params, curve);
208 int qLength = new X9IntegerConverter().getByteLength(curve);
223 X9ECPoint derQ = new X9ECPoint(curve, key);
243 // stored curve is null if ImplicitlyCa
  /external/webrtc/webrtc/base/
sslidentity.cc 41 params_.curve = EC_NIST_P256;
60 KeyParams KeyParams::ECDSA(ECCurve curve) {
62 kt.params_.curve = curve;
72 return (params_.curve == EC_NIST_P256);
84 return params_.curve;
  /external/lmfit/demo/
curve1.c 6 * Contents: Example for curve fitting with lmcurve():
7 * fit a data set y(x) by a curve f(x;p).
  /external/lmfit/ruby/inline/
curve1_rubyinline.rb 17 class Curve
96 c = Curve.new
  /external/skia/src/pathops/
SkOpAngle.h 119 SkDCurve fOriginalCurvePart; // the curve from start to end
120 SkDCurveSweep fPart; // the curve from start to end offset as needed
  /external/skqp/src/pathops/
SkOpAngle.h 119 SkDCurve fOriginalCurvePart; // the curve from start to end
120 SkDCurveSweep fPart; // the curve from start to end offset as needed
  /external/tpm2/
ZGen_2Phase.c 17 // TPM_RC_ECC_POINT inQsB or inQeB is not on the curve of the key reference by keyA
60 // Input points must be on the curve of keyA
  /libcore/luni/src/test/java/tests/security/spec/
ECPrivateKeySpecTest.java 41 EllipticCurve curve = new EllipticCurve(new ECFieldF2m(2), BigInteger local
45 ecparams = new ECParameterSpec(curve, ecpoint, BigInteger.valueOf(1), 1);
ECPublicKeySpecTest.java 39 EllipticCurve curve = new EllipticCurve(new ECFieldF2m(2), BigInteger local
43 params = new ECParameterSpec(curve, ecpoint, BigInteger.valueOf(1), 1);
  /libcore/ojluni/src/main/java/java/security/spec/
ECGenParameterSpec.java 29 * generating elliptic curve (EC) domain parameters.
45 * (precomputed) elliptic curve domain parameters. For the
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
ImageFilterCurves.java 49 float[] curve = spline.getAppliedCurve(); local
51 array[i] = (int) (curve[i] * 255);
  /system/keymaster/km_openssl/
openssl_utils.cpp 46 EC_GROUP* ec_get_group(keymaster_ec_curve_t curve) {
47 switch (curve) {
  /system/security/keystore/
operation_config.proto 58 // Which ec curve was selected if elliptic curve cryptography is in use
  /external/freetype/docs/
raster.txt 93 `outlines'. A contour is simply a closed curve that delimits an
98 whether it is `on' or `off' the curve. Two successive `on'
105 curve is described by four points (two `off' control points
113 The parametric form of a second-order Bézier curve is:
119 The parametric form of a third-order Bézier curve is:
129 Each point of the curve is a weighted average of the control
142 * # on curve
143 * off curve
159 -_ _- # on' point where the curve passes.
383 # on curve
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
FixedPointCombMultiplier.java 20 throw new IllegalStateException("fixed-point comb doesn't support scalars larger than the curve order");
  /external/libconstrainedcrypto/include/constrainedcrypto/
p256.h 54 extern const p256_int SECP256r1_n; // Curve order
55 extern const p256_int SECP256r1_p; // Curve prime
56 extern const p256_int SECP256r1_b; // Curve param
142 // Return whether point {x,y} is on curve.
  /external/lmfit/lib/
lmcurve.c 6 * Contents: Implements lmcurve, a simplified API for curve fitting
lmcurve.h 6 * Contents: Declares lmcurve, a simplified API for curve fitting
  /external/nos/test/system-test-harness/src/
blob.h 40 uint32_t curve; member in struct:blob_ec
  /frameworks/base/media/java/android/media/
VolumeAutomation.java 32 * that specifies the curve and duration to use.
  /frameworks/support/wear/src/main/java/androidx/wear/widget/
CurvingLayoutCallback.java 30 * of the associated {@link WearableRecyclerView} along a pre-defined vertical curve.
88 // Continue offsetting the child along the straight-line part of the curve, if it
89 // has not gone off the screen when it reached the end of the original curve.
131 // The values in this function are custom to the curve we use.

Completed in 464 milliseconds

1 2 3 4 5 6 7 891011>>