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.
81 lines
2.0 KiB
81 lines
2.0 KiB
// Copyright © 2023 OpenIM. All rights reserved.
|
|
//
|
|
// 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.
|
|
|
|
package mw
|
|
|
|
import (
|
|
"crypto/aes"
|
|
"crypto/cipher"
|
|
"crypto/md5"
|
|
"encoding/base64"
|
|
"errors"
|
|
"fmt"
|
|
"math/rand"
|
|
"strings"
|
|
"sync"
|
|
"time"
|
|
|
|
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/config"
|
|
)
|
|
|
|
var (
|
|
once sync.Once
|
|
block cipher.Block
|
|
)
|
|
|
|
func init() {
|
|
rand.Seed(time.Now().UnixNano())
|
|
}
|
|
|
|
func initAesKey() {
|
|
once.Do(func() {
|
|
key := md5.Sum([]byte("openim:" + config.Config.Secret))
|
|
var err error
|
|
block, err = aes.NewCipher(key[:])
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
})
|
|
}
|
|
|
|
func genReqKey(args []string) string {
|
|
initAesKey()
|
|
plaintext := md5.Sum([]byte(strings.Join(args, ":")))
|
|
iv := make([]byte, aes.BlockSize, aes.BlockSize+md5.Size)
|
|
if _, err := rand.Read(iv); err != nil {
|
|
panic(err)
|
|
}
|
|
ciphertext := make([]byte, md5.Size)
|
|
cipher.NewCBCEncrypter(block, iv).CryptBlocks(ciphertext, plaintext[:])
|
|
return base64.StdEncoding.EncodeToString(append(iv, ciphertext...))
|
|
}
|
|
|
|
func verifyReqKey(args []string, key string) error {
|
|
initAesKey()
|
|
k, err := base64.StdEncoding.DecodeString(key)
|
|
if err != nil {
|
|
return fmt.Errorf("invalid key %v", err)
|
|
}
|
|
if len(k) != aes.BlockSize+md5.Size {
|
|
return errors.New("invalid key")
|
|
}
|
|
plaintext := make([]byte, md5.Size)
|
|
cipher.NewCBCDecrypter(block, k[:aes.BlockSize]).CryptBlocks(plaintext, k[aes.BlockSize:])
|
|
sum := md5.Sum([]byte(strings.Join(args, ":")))
|
|
if string(plaintext) != string(sum[:]) {
|
|
return errors.New("mismatch key")
|
|
}
|
|
return nil
|
|
}
|