This document describes how to use key fingerprints for code repository authentication. This ensures that the connected remote repository is a genuine CODING repository.
Open Project
1. Log in to CODING Console, click the team domain name to enter the CODING page.
2. Click Item on the left side of the team homepage to enter the project list page and select the target project.
3. In the menu on the left, select Code Repository to enter the code repository homepage.
4. If the Code Repository is not shown on the left, the project admin needs to go to Project Settings > Projects and Members > Feature Toggle to enable it.
Description of the Feature
Code security is always essential. To ensure that the remote repository you are connecting to is an authentic CODING code repository, SSH key fingerprints are now provided for authentication. You simply need to run the command locally and verify the returned result to determine the authenticity of the remote repository.
Verify SHA256 Fingerprint
View the
.ssh/know_hosts file locally for the SHA256 fingerprint of e.coding.net. If the return value is jok3FH7q5LJ6qvE7iPNehBgXRw51ErE77S0Dn+Vg/Ik, it confirms that you are connected to the correct CODING server. You can view the result of the command on the terminal.ssh-keygen -lf ~/.ssh/known_hosts

Verify MD5 Fingerprint
View the
.ssh/know_hosts file locally for the MD5 fingerprint of e.coding.net. If the return value is 98:ab:2b:30:60:00:82:86:bb:85:db:87:22:c4:4f:b1, it confirms that you are connected to the correct CODING server. You can view the result of the command on the terminal.ssh-keygen -E md5 -lf ~/.ssh/known_hosts