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.
28 lines
642 B
28 lines
642 B
7 years ago
|
package authentication
|
||
|
|
||
|
// TestSigner represents an authentication key signer which we can use for
|
||
|
// testing purposes only. This will largely be a stub to send through client
|
||
|
// unit tests.
|
||
|
type TestSigner struct{}
|
||
|
|
||
|
// NewTestSigner constructs a new instance of test signer
|
||
|
func NewTestSigner() (Signer, error) {
|
||
|
return &TestSigner{}, nil
|
||
|
}
|
||
|
|
||
|
func (s *TestSigner) DefaultAlgorithm() string {
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (s *TestSigner) KeyFingerprint() string {
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (s *TestSigner) Sign(dateHeader string) (string, error) {
|
||
|
return "", nil
|
||
|
}
|
||
|
|
||
|
func (s *TestSigner) SignRaw(toSign string) (string, string, error) {
|
||
|
return "", "", nil
|
||
|
}
|