Key Pair Authentication
1
3
4
Verify the user’s public key fingerprint
Retrieve the User's Public Key Fingerprint (In Snowflake) and note the output:
DESC USER TELESKOPE_USER
->> SELECT SUBSTR(
(SELECT "value" FROM $1
WHERE "property" = 'RSA_PUBLIC_KEY_FP'),
LEN('SHA256:') + 1) AS key;
Run the following command on command line:
openssl rsa -pubin -in rsa_key.pub -outform DER | openssl dgst -sha256 -binary | openssl enc -base64
Compare the outputs. If both outputs match, the user correctly configured their public key. Go back to the Enrollment step on the previous page to complete enrollment.
Last updated
Was this helpful?