HomeSort by relevance Sort by last modified time
    Searched defs:vrfy (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/boringssl/src/crypto/rsa/
rsa_impl.c 639 BIGNUM *r1, *m1, *vrfy; local
647 vrfy = BN_CTX_get(ctx);
750 if (!rsa->meth->bn_mod_exp(vrfy, r0, rsa->e, rsa->n, ctx,
758 if (!BN_sub(vrfy, vrfy, I)) {
761 if (!BN_mod(vrfy, vrfy, rsa->n, ctx)) {
764 if (BN_is_negative(vrfy)) {
765 if (!BN_add(vrfy, vrfy, rsa->n))
    [all...]
  /external/openssl/crypto/rsa/
rsa_eay.c 739 BIGNUM *r1,*m1,*vrfy; local
747 vrfy = BN_CTX_get(ctx);
863 if (!rsa->meth->bn_mod_exp(vrfy,r0,rsa->e,rsa->n,ctx,rsa->_method_mod_n)) goto err;
868 if (!BN_sub(vrfy, vrfy, I)) goto err;
869 if (!BN_mod(vrfy, vrfy, rsa->n, ctx)) goto err;
870 if (BN_is_negative(vrfy))
871 if (!BN_add(vrfy, vrfy, rsa->n)) goto err
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
smtplib.py 22 RSET NOOP QUIT HELP VRFY
29 >>> s.putcmd("vrfy","someone@here")
510 self.putcmd("vrfy", _addr_only(address))
513 vrfy = verify variable in class:SMTP
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
smtplib.py 22 RSET NOOP QUIT HELP VRFY
29 >>> s.putcmd("vrfy","someone@here")
510 self.putcmd("vrfy", _addr_only(address))
513 vrfy = verify variable in class:SMTP

Completed in 584 milliseconds