79b8784934
* Code: compatible with semantic import versioning * Tools & Docs: compatible with semantic import versioning * Clean go.mod & go.sum
16 lines
548 B
Go
16 lines
548 B
Go
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
|
|
})
|
|
}
|