yubikey-server是Go语言实现的yubikey服务器,你可以在网络上运行自己的服务器,这些服务并不能访问你的办公网络。
使用方法:
// to build the server$go build // will add a new application and display the id and key$./yubikey-server -app "NameOfYourApp"// will add a new key in the system$./yubikey-server -name "YourName" -pub "publicKey" -secret "AESSecret"// will start the server on the default port 3000$./yubikey-server -s
评论