Home | History | Annotate | Download | only in testprof

Lines Matching refs:rsa_verify_hash

291    DO(rsa_verify_hash(out, len, in, 20, hash_idx, 0, &stat, &key));
294 DO(rsa_verify_hash(out, len, in, 20, hash_idx, 0, &stat2, &key));
297 fprintf(stderr, "rsa_verify_hash (unsalted, origKey) failed, %d, %d", stat, stat2);
307 DO(rsa_verify_hash(out, len, in, 20, hash_idx, 0, &stat, &privKey));
310 DO(rsa_verify_hash(out, len, in, 20, hash_idx, 0, &stat2, &privKey));
313 fprintf(stderr, "rsa_verify_hash (unsalted, privKey) failed, %d, %d", stat, stat2);
323 DO(rsa_verify_hash(out, len, in, 20, hash_idx, 0, &stat, &pubKey));
326 DO(rsa_verify_hash(out, len, in, 20, hash_idx, 0, &stat2, &pubKey));
329 fprintf(stderr, "rsa_verify_hash (unsalted, pubkey) failed, %d, %d", stat, stat2);
339 DO(rsa_verify_hash(out, len, in, 20, hash_idx, 8, &stat, &pubKey));
342 DO(rsa_verify_hash(out, len, in, 20, hash_idx, 8, &stat2, &pubKey));
345 fprintf(stderr, "rsa_verify_hash (salted) failed, %d, %d", stat, stat2);