You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
548 B
17 lines
548 B
package authn
|
|
|
|
import (
|
|
model "github.com/cloudreve/Cloudreve/v3/models"
|
|
"github.com/duo-labs/webauthn/webauthn"
|
|
)
|
|
|
|
// NewAuthnInstance 新建Authn实例
|
|
func NewAuthnInstance() (*webauthn.WebAuthn, error) {
|
|
base := model.GetSiteURL()
|
|
return webauthn.New(&webauthn.Config{
|
|
RPDisplayName: model.GetSettingByName("siteName"), // Display Name for your site
|
|
RPID: base.Hostname(), // Generally the FQDN for your site
|
|
RPOrigin: base.String(), // The origin URL for WebAuthn requests
|
|
})
|
|
}
|