Home
last modified time | relevance | path

Searched defs:Challenge (Results 1 – 25 of 1157) sorted by relevance

12345678910>>...47

/dports/www/gitea/gitea-1.16.5/vendor/github.com/mholt/acmez/acme/
H A Dchallenge.go32 type Challenge struct { struct
37 Type string `json:"type"`
40 URL string `json:"url"`
45 Status string `json:"status"`
50 Validated string `json:"validated,omitempty"`
57 Error *Problem `json:"error,omitempty"`
66 Token string `json:"token,omitempty"`
80 Identifier Identifier `json:"identifier,omitempty"`
88 func (c Challenge) HTTP01ResourcePath() string {
98 func (c Challenge) DNS01TXTRecordName() string {
[all …]
/dports/security/lego/lego-4.5.3/challenge/dns01/
H A Ddns_challenge.go46 type Challenge struct { struct
47 core *api.Core
48 validate ValidateFunc
49 provider challenge.Provider
50 preCheck preCheck
51 dnsTimeout time.Duration
75 func (c *Challenge) PreSolve(authz acme.Authorization) error {
102 func (c *Challenge) Solve(authz acme.Authorization) error {
147 func (c *Challenge) CleanUp(authz acme.Authorization) error {
163 func (c *Challenge) Sequential() (bool, time.Duration) {
/dports/www/pomerium/pomerium-0.8.3/vendor/github.com/go-acme/lego/v3/challenge/dns01/
H A Ddns_challenge.go46 type Challenge struct { struct
47 core *api.Core
48 validate ValidateFunc
49 provider challenge.Provider
50 preCheck preCheck
51 dnsTimeout time.Duration
75 func (c *Challenge) PreSolve(authz acme.Authorization) error {
102 func (c *Challenge) Solve(authz acme.Authorization) error {
145 func (c *Challenge) CleanUp(authz acme.Authorization) error {
161 func (c *Challenge) Sequential() (bool, time.Duration) {
/dports/net/traefik/traefik-2.6.1/vendor/github.com/go-acme/lego/v4/challenge/dns01/
H A Ddns_challenge.go46 type Challenge struct { struct
47 core *api.Core
48 validate ValidateFunc
49 provider challenge.Provider
50 preCheck preCheck
51 dnsTimeout time.Duration
75 func (c *Challenge) PreSolve(authz acme.Authorization) error {
102 func (c *Challenge) Solve(authz acme.Authorization) error {
147 func (c *Challenge) CleanUp(authz acme.Authorization) error {
163 func (c *Challenge) Sequential() (bool, time.Duration) {
/dports/net/rclone/rclone-1.57.0/vendor/github.com/colinmarc/hdfs/v2/internal/sasl/
H A Dchallenge.go25 type Challenge struct { struct
26 Realm string
27 Nonce string
28 Qop []string
29 Charset string
30 Cipher []string
31 Algorithm string
/dports/www/gitea/gitea-1.16.5/vendor/github.com/tstranex/u2f/
H A Dutil.go75 type Challenge struct { struct
76 Challenge []byte member
77 Timestamp time.Time
78 AppID string
79 TrustedFacets []string
101 func verifyClientData(clientData []byte, challenge Challenge) error {
/dports/security/acmetool/acmetool-0.2.1/interaction/
H A Dinteraction.go26 type Challenge struct { struct
27 ResponseType ResponseType // The response type.
29 Title string // Title to be used for e.g. a dialog box if shown.
30 Body string // The text to be shown to the user. May be multiple lines.
32 YesLabel string // Label to use for RTYesNo 'Yes' label.
33 NoLabel string // Label to use for RTYesNo 'No' label.
38 Prompt string
43 UniqueID string
46 Options []Option
50 Implicit bool
[all …]
/dports/security/acmetool/acmetool-0.2.1/vendor/github.com/hlandau/acmetool/interaction/
H A Dinteraction.go26 type Challenge struct { struct
27 ResponseType ResponseType // The response type.
29 Title string // Title to be used for e.g. a dialog box if shown.
30 Body string // The text to be shown to the user. May be multiple lines.
32 YesLabel string // Label to use for RTYesNo 'Yes' label.
33 NoLabel string // Label to use for RTYesNo 'No' label.
38 Prompt string
43 UniqueID string
46 Options []Option
50 Implicit bool
[all …]
/dports/security/vaultwarden/vaultwarden-1.23.1/cargo-crates/u2f-0.2.0/src/
H A Dprotocol.rs20 pub struct Challenge { struct
26 impl Challenge { argument
44 pub fn generate_challenge(&self) -> Result<Challenge> { in generate_challenge()
57 …pub fn request(&self, challenge: Challenge, registrations: Vec<Registration>) -> Result<U2fRegiste… in request()
79 …pub fn register_response(&self, challenge: Challenge, response: RegisterResponse) -> Result<Regist… in register_response()
100 …pub fn sign_request(&self, challenge: Challenge, registrations: Vec<Registration>) -> U2fSignReque… in sign_request()
116 …pub fn sign_response(&self, challenge: Challenge, reg: Registration, sign_resp: SignResponse, coun… in sign_response()
/dports/security/lego/lego-4.5.3/challenge/http01/
H A Dhttp_challenge.go19 type Challenge struct { struct
20 core *api.Core
21 validate ValidateFunc
22 provider challenge.Provider
33 func (c *Challenge) SetProvider(provider challenge.Provider) {
37 func (c *Challenge) Solve(authz acme.Authorization) error {
/dports/www/pomerium/pomerium-0.8.3/vendor/github.com/go-acme/lego/v3/challenge/http01/
H A Dhttp_challenge.go19 type Challenge struct { struct
20 core *api.Core
21 validate ValidateFunc
22 provider challenge.Provider
33 func (c *Challenge) SetProvider(provider challenge.Provider) {
37 func (c *Challenge) Solve(authz acme.Authorization) error {
/dports/net/traefik/traefik-2.6.1/vendor/github.com/go-acme/lego/v4/challenge/http01/
H A Dhttp_challenge.go19 type Challenge struct { struct
20 core *api.Core
21 validate ValidateFunc
22 provider challenge.Provider
33 func (c *Challenge) SetProvider(provider challenge.Provider) {
37 func (c *Challenge) Solve(authz acme.Authorization) error {
/dports/security/lego/lego-4.5.3/challenge/tlsalpn01/
H A Dtls_alpn_challenge.go24 type Challenge struct { struct
25 core *api.Core
26 validate ValidateFunc
27 provider challenge.Provider
38 func (c *Challenge) SetProvider(provider challenge.Provider) {
43 func (c *Challenge) Solve(authz acme.Authorization) error {
/dports/www/pomerium/pomerium-0.8.3/vendor/github.com/go-acme/lego/v3/challenge/tlsalpn01/
H A Dtls_alpn_challenge.go24 type Challenge struct { struct
25 core *api.Core
26 validate ValidateFunc
27 provider challenge.Provider
38 func (c *Challenge) SetProvider(provider challenge.Provider) {
43 func (c *Challenge) Solve(authz acme.Authorization) error {
/dports/net/traefik/traefik-2.6.1/vendor/github.com/go-acme/lego/v4/challenge/tlsalpn01/
H A Dtls_alpn_challenge.go24 type Challenge struct { struct
25 core *api.Core
26 validate ValidateFunc
27 provider challenge.Provider
38 func (c *Challenge) SetProvider(provider challenge.Provider) {
43 func (c *Challenge) Solve(authz acme.Authorization) error {
/dports/games/abstreet/abstreet-0.2.9-49-g74aca40c0/game/src/
H A Dchallenges.rs15 pub struct Challenge { struct
16 title: String,
17 pub description: Vec<String>,
18 pub alias: String,
19 pub gameplay: GameplayMode,
43 impl Challenge { argument
93 pub fn find(mode: &GameplayMode) -> (Challenge, Option<Challenge>) { in find()
/dports/www/gitea/gitea-1.16.5/vendor/github.com/mholt/acmez/
H A Dsolver.go41 Present(context.Context, acme.Challenge) error
47 CleanUp(context.Context, acme.Challenge) error
71 Wait(context.Context, acme.Challenge) error
/dports/java/bouncycastle15/crypto-169/util/src/main/java/org/bouncycastle/asn1/cmp/
H A DChallenge.java13 public class Challenge class
20 private Challenge(ASN1Sequence seq) in Challenge() method in Challenge
48 public Challenge(byte[] witness, byte[] challenge) in Challenge() method in Challenge
53 public Challenge(AlgorithmIdentifier owf, byte[] witness, byte[] challenge) in Challenge() method in Challenge
/dports/math/reduce/Reduce-svn5758-src/packages/mathml/
H A Dintroduction.tex78 \subsection{Html and Mathematics}
106 \subsection{Embedded Graphics}
127 \subsection{Graphical Page Display}
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/cortexproject/cortex/docs/proposals/
H A Dscalable-query-frontend.md56 #### Challenge subsubsection
74 #### Challenge subsubsection
115 #### Challenge subsubsection
129 #### Challenge subsubsection
142 #### Challenge subsubsection
/dports/irc/smuxi/smuxi-1.1/lib/agsxmpp/agsxmpp/protocol/sasl/
H A DChallenge.cs33 public class Challenge : Element class
35 public Challenge() in Challenge() method in agsXMPP.protocol.sasl.Challenge
/dports/www/miniserve/miniserve-0.18.0/cargo-crates/actix-web-httpauth-0.6.0-beta.2/src/headers/www_authenticate/challenge/
H A Dmod.rs10 pub trait Challenge: IntoHeaderValue + Debug + Display + Clone + Send + Sync { interface
/dports/security/lego/lego-4.5.3/acme/
H A Dcommons.go202 Challenge anonMember
212 type Challenge struct { struct
215 Type string `json:"type"`
219 URL string `json:"url"`
223 Status string `json:"status"`
229 Validated time.Time `json:"validated,omitempty"`
236 Error *ProblemDetails `json:"error,omitempty"`
246 Token string `json:"token"`
249 KeyAuthorization string `json:"keyAuthorization"`
/dports/www/pomerium/pomerium-0.8.3/vendor/github.com/go-acme/lego/v3/acme/
H A Dcommons.go201 Challenge anonMember
211 type Challenge struct { struct
214 Type string `json:"type"`
218 URL string `json:"url"`
222 Status string `json:"status"`
228 Validated time.Time `json:"validated,omitempty"`
235 Error *ProblemDetails `json:"error,omitempty"`
245 Token string `json:"token"`
248 KeyAuthorization string `json:"keyAuthorization"`
/dports/net/rclone/rclone-1.57.0/vendor/google.golang.org/api/verifiedaccess/v1/
H A Dverifiedaccess-gen.go128 Challenge *ChallengeService member
148 type Challenge struct { struct
151 AlternativeChallenge *SignedData `json:"alternativeChallenge,omitempty"`
154 Challenge *SignedData `json:"challenge,omitempty"` argument
158 googleapi.ServerResponse `json:"-"`
167 ForceSendFields []string `json:"-"`
176 NullFields []string `json:"-"`
179 func (s *Challenge) MarshalJSON() ([]byte, error) {

12345678910>>...47