mirror of
https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snowflake.git
synced 2025-10-14 14:11:23 -04:00
Switch to sqscreds param for passing in SQS credentials
This commit is contained in:
parent
fe56eaddf4
commit
9fe2ca58a0
7 changed files with 89 additions and 18 deletions
35
common/sqscreds/lib/sqs_creds.go
Normal file
35
common/sqscreds/lib/sqs_creds.go
Normal file
|
@ -0,0 +1,35 @@
|
|||
package sqscreds
|
||||
|
||||
import (
|
||||
"encoding/base64"
|
||||
"encoding/json"
|
||||
)
|
||||
|
||||
type AwsCreds struct {
|
||||
AwsAccessKeyId string `json:"aws-access-key-id"`
|
||||
AwsSecretKey string `json:"aws-secret-key"`
|
||||
}
|
||||
|
||||
func (awsCreds AwsCreds) Base64() (string, error) {
|
||||
jsonData, err := json.Marshal(awsCreds)
|
||||
if err != nil {
|
||||
return "", err
|
||||
}
|
||||
return base64.StdEncoding.EncodeToString(jsonData), nil
|
||||
}
|
||||
|
||||
func AwsCredsFromBase64(base64Str string) (AwsCreds, error) {
|
||||
var awsCreds AwsCreds
|
||||
|
||||
jsonData, err := base64.StdEncoding.DecodeString(base64Str)
|
||||
if err != nil {
|
||||
return awsCreds, err
|
||||
}
|
||||
|
||||
err = json.Unmarshal(jsonData, &awsCreds)
|
||||
if err != nil {
|
||||
return awsCreds, err
|
||||
}
|
||||
|
||||
return awsCreds, nil
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue