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.
87 lines
2.4 KiB
87 lines
2.4 KiB
9 years ago
|
/*
|
||
|
* Minio Cloud Storage, (C) 2015, 2016 Minio, Inc.
|
||
|
*
|
||
|
* 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.
|
||
|
*/
|
||
|
|
||
8 years ago
|
package cmd
|
||
9 years ago
|
|
||
|
import (
|
||
|
"crypto/rand"
|
||
|
"encoding/base64"
|
||
|
"regexp"
|
||
|
)
|
||
|
|
||
|
// credential container for access and secret keys.
|
||
|
type credential struct {
|
||
|
AccessKeyID string `json:"accessKey"`
|
||
|
SecretAccessKey string `json:"secretKey"`
|
||
|
}
|
||
|
|
||
|
const (
|
||
|
minioAccessID = 20
|
||
|
minioSecretID = 40
|
||
|
)
|
||
|
|
||
|
// isValidSecretKey - validate secret key.
|
||
9 years ago
|
var isValidSecretKey = regexp.MustCompile(`^.{8,40}$`)
|
||
9 years ago
|
|
||
|
// isValidAccessKey - validate access key.
|
||
9 years ago
|
var isValidAccessKey = regexp.MustCompile(`^[a-zA-Z0-9\\-\\.\\_\\~]{5,20}$`)
|
||
9 years ago
|
|
||
|
// mustGenAccessKeys - must generate access credentials.
|
||
|
func mustGenAccessKeys() (creds credential) {
|
||
|
creds, err := genAccessKeys()
|
||
9 years ago
|
fatalIf(err, "Unable to generate access keys.")
|
||
9 years ago
|
return creds
|
||
|
}
|
||
|
|
||
|
// genAccessKeys - generate access credentials.
|
||
9 years ago
|
func genAccessKeys() (credential, error) {
|
||
9 years ago
|
accessKeyID, err := genAccessKeyID()
|
||
|
if err != nil {
|
||
9 years ago
|
return credential{}, err
|
||
9 years ago
|
}
|
||
|
secretAccessKey, err := genSecretAccessKey()
|
||
|
if err != nil {
|
||
9 years ago
|
return credential{}, err
|
||
9 years ago
|
}
|
||
|
creds := credential{
|
||
|
AccessKeyID: string(accessKeyID),
|
||
|
SecretAccessKey: string(secretAccessKey),
|
||
|
}
|
||
|
return creds, nil
|
||
|
}
|
||
|
|
||
|
// genAccessKeyID - generate random alpha numeric value using only uppercase characters
|
||
|
// takes input as size in integer
|
||
9 years ago
|
func genAccessKeyID() ([]byte, error) {
|
||
9 years ago
|
alpha := make([]byte, minioAccessID)
|
||
9 years ago
|
if _, err := rand.Read(alpha); err != nil {
|
||
|
return nil, err
|
||
9 years ago
|
}
|
||
|
for i := 0; i < minioAccessID; i++ {
|
||
|
alpha[i] = alphaNumericTable[alpha[i]%byte(len(alphaNumericTable))]
|
||
|
}
|
||
|
return alpha, nil
|
||
|
}
|
||
|
|
||
|
// genSecretAccessKey - generate random base64 numeric value from a random seed.
|
||
9 years ago
|
func genSecretAccessKey() ([]byte, error) {
|
||
9 years ago
|
rb := make([]byte, minioSecretID)
|
||
9 years ago
|
if _, err := rand.Read(rb); err != nil {
|
||
|
return nil, err
|
||
9 years ago
|
}
|
||
|
return []byte(base64.StdEncoding.EncodeToString(rb))[:minioSecretID], nil
|
||
|
}
|