Post AwflGwHC6JzV0ML7zc by [email protected] | |
More posts by [email protected] | |
Post #AwdKaGc1d8oiV19gxc by [email protected] | |
0 likes, 0 repeats | |
Le sigh. There must be a simpler way, but I cannot find it. Trying to get the S… | |
Post #AwdKaGkB8pL4uIyCfY by [email protected] | |
0 likes, 1 repeats | |
@jwildeboer Compile and use this ;)#include <stdio.h>#include <stdlib.… | |
Post #AwdL2IDfFU1Hal7mHg by [email protected] | |
0 likes, 1 repeats | |
@jwildeboer | |
Post #AwdLgyJCBIyLiF6o2y by [email protected] | |
0 likes, 1 repeats | |
@jwildeboer Make sure you have OpenSSL development libraries installed (libssl-… | |
Post #AwdQpcDGCYtVYqH1cG by [email protected] | |
0 likes, 0 repeats | |
openssl has so, so many options and commands, but outputting the fingerprint as… | |
Post #AwdQpcJdopzxsdG7Yu by [email protected] | |
0 likes, 1 repeats | |
@jwildeboer I should add my code to OpenSSL as a switch 😁 | |
Post #AwdTzx7TcqFfA0Bn8a by [email protected] | |
0 likes, 1 repeats | |
@jwildeboer @donburi openssl x509 -in roots.pem -outform DER | openssl dgst -sh… | |
Post #AwdVizoqXFwEWBW82q by [email protected] | |
0 likes, 0 repeats | |
@Larvitz Because I am weird:openssl x509 -in roots.pem -outform DER | sha256sum… | |
Post #AwdVizvE9X2gpyVDzU by [email protected] | |
0 likes, 1 repeats | |
@jwildeboer @donburi nice :) That's even cleaner | |
Post #AwdW7CVF1r7ko2tANU by [email protected] | |
0 likes, 0 repeats | |
@Larvitz If you just sha256sum it will always add a ' -' to indicate th… | |
Post #AwdW7Cauglf35dXhDc by [email protected] | |
0 likes, 1 repeats | |
@jwildeboer @donburi How about this? That would mitigate it:openssl x509 -in ce… | |
Post #AwdWQwaBvgMZDqcP1k by [email protected] | |
0 likes, 0 repeats | |
@Larvitz That's the best version! Thanks! Will be added to my .bashrc :) @d… | |
Post #AwdWQwgZXxT1XdbUyO by [email protected] | |
0 likes, 1 repeats | |
@jwildeboer @donburi I'll keep the version with cut in my cheatsheet. I fin… | |
Post #AwdYicwZsvZLQyeJRg by [email protected] | |
0 likes, 0 repeats | |
OK. Thank you all for your input and ideas! This is the version I now use:`open… | |
Post #AwdYid2xVCfnkldPOK by [email protected] | |
0 likes, 1 repeats | |
@jwildeboer I fiddled around with such openssl commands, when I build my hom/co… | |
Post #AwflEWVsuscAWU3k48 by [email protected] | |
0 likes, 0 repeats | |
@jwildeboer If you pipe the decoded cert into sha256sum? | |
Post #AwflEWdgRsqwufhyDo by [email protected] | |
0 likes, 0 repeats | |
@JmbFountain That's what I ended up doing, yes. Unfortunately there's n… | |
Post #AwflFKfWRK264qx91s by [email protected] | |
0 likes, 0 repeats | |
@Larvitz I also have a Nitrokey HSM USB stick lying around and plan to use it. … | |
Post #AwflFtJPdW8xWPsTvU by [email protected] | |
0 likes, 0 repeats | |
@jwildeboer You got me all excited for a gist feature in Fogejo, but it's j… | |
Post #AwflFtQVD9oZsPC8ye by [email protected] | |
0 likes, 0 repeats | |
@ben The gist feature for forgejp was almost here, but is stalled due to lack o… | |
Post #AwflFtXamnUCEOVo1o by [email protected] | |
0 likes, 0 repeats | |
@ben But a normal git repo as I use it has a few advantages too. You can simply… | |
Post #AwflGwHC6JzV0ML7zc by [email protected] | |
0 likes, 0 repeats | |
@jwildeboer What about:openssl x509 -in roots.pem -noout -serial | cut -f2 -d= | |
Post #AwflGwOHfxf7MLen2m by [email protected] | |
0 likes, 0 repeats | |
@blindcoder That's the serial, not the SHA256 fingerprint ;) | |
Post #AwflGwV1Gv39hEoAXg by [email protected] | |
0 likes, 0 repeats | |
@jwildeboer Oh, sorry, misread that. I guess you could use tr and cut instead o… | |
Post #AwflGwagvpaRypShNo by [email protected] | |
0 likes, 0 repeats | |
@blindcoder When I start my homelab CA (Certificate Authority), it tells me the… | |
Post #AwflHGWSpG5ZnVdbZQ by [email protected] | |
0 likes, 0 repeats | |
@jwildeboer Makes sense to be able to compare those. I guess once there's (… | |
Post #AwgusZ57scEKokffvs by [email protected] | |
0 likes, 1 repeats | |
@jwildeboer on my GitHub, including a release, build for Ubuntuhttps://github.c… | |
Post #Awh2JxUBpc8MfuvmPQ by [email protected] | |
0 likes, 1 repeats | |
@jwildeboer I have a patch ready for openssl , needs to do some testing, if it… | |
Post #Awh2cUlyoI517p5i9w by [email protected] | |
0 likes, 1 repeats | |
@jwildeboer will be something likeopenssl cert-fingerprint -in test.pemopenssl … | |
Post #Awp8cfJnXTO6h7rTF2 by [email protected] | |
0 likes, 1 repeats | |
@jwildeboer as promised, added this to openssl (https://github.com/nieldk/opens… | |
Post #AwpHjYAXPx2C8Tt6ie by [email protected] | |
0 likes, 1 repeats | |
@jwildeboer https://github.com/openssl/openssl/pull/28165 |