Documentation
¶
Overview ¶
Copyright 2023 Northern.tech AS
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Copyright 2023 Northern.tech AS
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Copyright 2023 Northern.tech AS
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Index ¶
- Constants
- func ContainsString(val string, vals []string) bool
- func JoinURL(base, url string) string
- func JsonSort(what string) (string, error)
- func NewClock() *clock
- func NewMockClock(unixNow int64) *mockClock
- func ParsePubKey(pubkey string) (crypto.PublicKey, error)
- func ReadBodyRaw(r *rest.Request) ([]byte, error)
- func SerializePubKey(key crypto.PublicKey) (string, error)
- func UnixMilis() int64
- func VerifyAuthReqSign(signature string, pubkey crypto.PublicKey, content []byte) error
- type Clock
Constants ¶
View Source
const ( ErrMsgVerify = "verification failed" //PEM identifier of an RSA public key, needed for decoding //key content from a string PubKeyBlockType = "PUBLIC KEY" )
Variables ¶
This section is empty.
Functions ¶
func ContainsString ¶
Check if string is presnt in an array. Would use interface{} but whatever.
func JsonSort ¶
JsonSort decodes and re-encodes a json string to get a lexical sort on json keys. An error is returned if it's not in fact json.
func NewMockClock ¶
func NewMockClock(unixNow int64) *mockClock
func VerifyAuthReqSign ¶
VerifyAuthReqSign verifies a SHA256 digested signature for a given public key. The current asymmetric crypto algorithms supported are RSA (PKCS 1.5 signature), ED25519 and ECDSA (DSA is considered obsolete). The signature is fixed to the SHA256 hash algorithm.
Types ¶
Click to show internal directories.
Click to hide internal directories.