HomeSort by relevance Sort by last modified time
    Searched refs:qm1 (Results 1 - 3 of 3) sorted by null

  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/decoder/
DecoderUtil.java 178 int qm1 = body.indexOf('?', begin + 2); local
179 if (qm1 == -1) {
182 int qm2 = body.indexOf('?', qm1 + 1);
219 int qm1 = body.indexOf('?', begin + 2); local
220 if (qm1 == -1 || qm1 == end - 2)
223 int qm2 = body.indexOf('?', qm1 + 1);
227 String mimeCharset = body.substring(begin + 2, qm1);
228 String encoding = body.substring(qm1 + 1, qm2);
  /external/boringssl/src/crypto/fipsmodule/rsa/
rsa.c 634 BIGNUM n, pm1, qm1, lcm, gcd, de, dmp1, dmq1, iqmp_times_q; local
667 BN_init(&qm1);
678 !BN_sub(&qm1, key->q, BN_value_one()) ||
679 !BN_mul(&lcm, &pm1, &qm1, ctx) ||
680 !BN_gcd(&gcd, &pm1, &qm1, ctx)) {
686 !BN_gcd(&gcd, &pm1, &qm1, ctx) ||
714 !BN_mod(&dmq1, key->d, &qm1, ctx) ||
735 BN_free(&qm1);
rsa_impl.c 954 BIGNUM *qm1 = BN_CTX_get(ctx); local
957 if (totient == NULL || pm1 == NULL || qm1 == NULL || gcd == NULL ||
1026 !BN_sub(qm1, rsa->q, BN_value_one()) ||
1027 !BN_mul(totient, pm1, qm1, ctx) ||
1028 !BN_gcd(gcd, pm1, qm1, ctx) ||
1043 !BN_mod(rsa->dmq1, rsa->d, qm1, ctx)) {
    [all...]

Completed in 461 milliseconds