1

When i do a git pull origin, I see below error. I checked the permissions of ".git" folder and keys and config. It was working working for few years now. All of sudden it started giving this error. This works from the windows machine. So i am guessing the connectivity is not an issue.

"FIPS integrity verification test failed

Permission denied (keyboard-interactive,publickey)

fatal: The remote end hung up unexpectedly"

Jinu Mohan
  • 136
  • 12
  • It looks like the credentials with which you authenticate yourself against the origin are no longer correct. Check the security configuration on the origin (or ask whoever admins the origin to do so). – Jeen Broekstra Jul 27 '18 at 04:47

2 Answers2

2

In the wake of GitHub deprecating weak cryptographic standards, your own remote repository server (referenced by "origin") might also have deprecated some of those standards.

Which means your local openssl might be too old.

VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250
0

It turns out that the failure was happening because git was doing a curl during pull and curl was failing with illegal instruction problem https://gryzli.info/2016/05/28/centos-6-curl-ssl-illegal-instruction-error/

once I added export NSS_DISABLE_HW_GCM=1, the git pull worked fine.

Jinu Mohan
  • 136
  • 12