• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/Security-55471.14.18/libsecurity_cryptkit/lib/

Lines Matching defs:depth

121     {	// depth=0
140 { // depth=1
160 { // depth=2
180 { // depth=3
200 { // depth=4
220 { // depth=5
240 { // depth=6
259 { // depth=7
279 { // depth=8
305 { // depth=9
326 { // depth=10, FPT_General version of q=160
346 { // depth=11, FPT_General, 161 bits
374 * depth = 0
402 * depth = 1
430 * depth = 2
458 * depth = 3
488 * depth = 4
518 * depth = 5
546 * depth = 6
579 * depth = 7
601 * depth = 8
624 * depth = 9
647 * depth = 10
773 curveParams *curveParamsForDepth(feeDepth depth)
776 const curveParamsStatic *cps = &curveParamsArray[depth];
778 if(depth > FEE_DEPTH_MAX) {
1036 * Figure the max giant size of the largest depth we know about...
1116 * Given key size in bits, obtain the asssociated depth.
1126 feeDepth *depth)
1134 *depth = FEE_DEPTH_31_1_M;
1137 *depth = FEE_DEPTH_31_1_P;
1145 *depth = FEE_DEPTH_40_213;
1155 *depth = FEE_DEPTH_127_GEN;
1158 *depth = FEE_DEPTH_127_1;
1163 *depth = FEE_DEPTH_127_1W;
1174 *depth = FEE_DEPTH_160_GEN;
1177 *depth = FEE_DEPTH_160_57;
1185 *depth = FEE_DEPTH_192_M529891;
1188 *depth = FEE_DEPTH_192_1425;
1197 printf("feeKeyBitsToDepth: depth %d\n", *depth);
1207 feeDepth *depth)
1219 *depth = FEE_DEPTH_31M;
1223 *depth = FEE_DEPTH_31W;
1239 *depth = FEE_DEPTH_127M;
1259 *depth = FEE_DEPTH_128W;
1271 *depth = FEE_DEPTH_161G;
1275 *depth = FEE_DEPTH_161W;
1296 *depth = FEE_DEPTH_192G;
1311 *depth = FEE_DEPTH_secp192r1;
1330 *depth = FEE_DEPTH_secp256r1;
1347 *depth = FEE_DEPTH_secp384r1;
1364 *depth = FEE_DEPTH_secp521r1;
1372 printf("feeKeyBitsToDepth: depth %d\n", *depth);
1380 * Obtain depth for specified curveParams
1384 feeDepth *depth)
1390 /* We do it this way to allow reconstructing depth from an encoded curveParams */
1396 return feeKeyBitsToDepth(cp->q, cp->primeType, curveType, depth);