mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-11-04 08:21:11 +00:00 
			
		
		
		
	* Add support for U2F Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add vendor library Add missing translations Signed-off-by: Jonas Franz <info@jonasfranz.software> * Minor improvements Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add U2F support for Firefox, Chrome (Android) by introducing a custom JS library Add U2F error handling Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add U2F login page to OAuth Signed-off-by: Jonas Franz <info@jonasfranz.software> * Move U2F user settings to a separate file Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add unit tests for u2f model Renamed u2f table name Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix problems caused by refactoring Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add U2F documentation Signed-off-by: Jonas Franz <info@jonasfranz.software> * Remove not needed console.log-s Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add default values to app.ini.sample Add FIDO U2F to comparison Signed-off-by: Jonas Franz <info@jonasfranz.software>
		
			
				
	
	
		
			87 lines
		
	
	
	
		
			2.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			87 lines
		
	
	
	
		
			2.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
// Go FIDO U2F Library
 | 
						|
// Copyright 2015 The Go FIDO U2F Library Authors. All rights reserved.
 | 
						|
// Use of this source code is governed by the MIT
 | 
						|
// license that can be found in the LICENSE file.
 | 
						|
 | 
						|
package u2f
 | 
						|
 | 
						|
import (
 | 
						|
	"encoding/json"
 | 
						|
)
 | 
						|
 | 
						|
// JwkKey represents a public key used by a browser for the Channel ID TLS
 | 
						|
// extension.
 | 
						|
type JwkKey struct {
 | 
						|
	KTy string `json:"kty"`
 | 
						|
	Crv string `json:"crv"`
 | 
						|
	X   string `json:"x"`
 | 
						|
	Y   string `json:"y"`
 | 
						|
}
 | 
						|
 | 
						|
// ClientData as defined by the FIDO U2F Raw Message Formats specification.
 | 
						|
type ClientData struct {
 | 
						|
	Typ       string          `json:"typ"`
 | 
						|
	Challenge string          `json:"challenge"`
 | 
						|
	Origin    string          `json:"origin"`
 | 
						|
	CIDPubKey json.RawMessage `json:"cid_pubkey"`
 | 
						|
}
 | 
						|
 | 
						|
// RegisterRequest as defined by the FIDO U2F Javascript API 1.1.
 | 
						|
type RegisterRequest struct {
 | 
						|
	Version   string `json:"version"`
 | 
						|
	Challenge string `json:"challenge"`
 | 
						|
}
 | 
						|
 | 
						|
// WebRegisterRequest contains the parameters needed for the u2f.register()
 | 
						|
// high-level Javascript API function as defined by the
 | 
						|
// FIDO U2F Javascript API 1.1.
 | 
						|
type WebRegisterRequest struct {
 | 
						|
	AppID            string            `json:"appId"`
 | 
						|
	RegisterRequests []RegisterRequest `json:"registerRequests"`
 | 
						|
	RegisteredKeys   []RegisteredKey   `json:"registeredKeys"`
 | 
						|
}
 | 
						|
 | 
						|
// RegisterResponse as defined by the FIDO U2F Javascript API 1.1.
 | 
						|
type RegisterResponse struct {
 | 
						|
	Version          string `json:"version"`
 | 
						|
	RegistrationData string `json:"registrationData"`
 | 
						|
	ClientData       string `json:"clientData"`
 | 
						|
}
 | 
						|
 | 
						|
// RegisteredKey as defined by the FIDO U2F Javascript API 1.1.
 | 
						|
type RegisteredKey struct {
 | 
						|
	Version   string `json:"version"`
 | 
						|
	KeyHandle string `json:"keyHandle"`
 | 
						|
	AppID     string `json:"appId"`
 | 
						|
}
 | 
						|
 | 
						|
// WebSignRequest contains the parameters needed for the u2f.sign()
 | 
						|
// high-level Javascript API function as defined by the
 | 
						|
// FIDO U2F Javascript API 1.1.
 | 
						|
type WebSignRequest struct {
 | 
						|
	AppID          string          `json:"appId"`
 | 
						|
	Challenge      string          `json:"challenge"`
 | 
						|
	RegisteredKeys []RegisteredKey `json:"registeredKeys"`
 | 
						|
}
 | 
						|
 | 
						|
// SignResponse as defined by the FIDO U2F Javascript API 1.1.
 | 
						|
type SignResponse struct {
 | 
						|
	KeyHandle     string `json:"keyHandle"`
 | 
						|
	SignatureData string `json:"signatureData"`
 | 
						|
	ClientData    string `json:"clientData"`
 | 
						|
}
 | 
						|
 | 
						|
// TrustedFacets as defined by the FIDO AppID and Facet Specification.
 | 
						|
type TrustedFacets struct {
 | 
						|
	Version struct {
 | 
						|
		Major int `json:"major"`
 | 
						|
		Minor int `json:"minor"`
 | 
						|
	} `json:"version"`
 | 
						|
	Ids []string `json:"ids"`
 | 
						|
}
 | 
						|
 | 
						|
// TrustedFacetsEndpoint is a container of TrustedFacets.
 | 
						|
// It is used as the response for an appId URL endpoint.
 | 
						|
type TrustedFacetsEndpoint struct {
 | 
						|
	TrustedFacets []TrustedFacets `json:"trustedFacets"`
 | 
						|
}
 |