Curl command we use download the files in remote location but some times we get error like

curl: (35) schannel: next InitializeSecurityContext failed: Unknown error (0x80092012)

This is due to SSL error and this can be avoided by adding parameter --insecure. Find the below example

curl https://repo1.maven.org/maven2/com/google/guava/guava/28.1-android/guava-28.1-android.jar --output guava.jar --insecure

This --insecure command prevents SSL exception.