inklabs/rangedb

View on GitHub
pkg/crypto/aes/cbc_pkcs5_padding.go

Summary

Maintainability
A
2 hrs
Test Coverage
A
94%

Showing 3 of 3 total issues

Method cbcPKCS5Padding.decrypt has 5 return statements (exceeds 4 allowed).
Open

func (e *cbcPKCS5Padding) decrypt(key, cipherText []byte) ([]byte, error) {
if len(cipherText) == 0 {
return nil, crypto.ErrInvalidCipherText
}
 
 
Severity: Major
Found in pkg/crypto/aes/cbc_pkcs5_padding.go - About 35 mins to fix

    Similar blocks of code found in 3 locations. Consider refactoring.
    Open

    func (e *cbcPKCS5Padding) Decrypt(base64Key, base64CipherText string) (string, error) {
    key, err := base64.StdEncoding.DecodeString(base64Key)
    if err != nil {
    return "", err
    }
    Severity: Major
    Found in pkg/crypto/aes/cbc_pkcs5_padding.go and 2 other locations - About 55 mins to fix
    pkg/crypto/aes/gcm.go on lines 40..53
    pkg/crypto/xchacha20poly1305/xchacha20poly1305.go on lines 37..50

    Similar blocks of code found in 2 locations. Consider refactoring.
    Open

    func (e *cbcPKCS5Padding) Encrypt(base64Key, plainText string) (string, error) {
    key, err := base64.StdEncoding.DecodeString(base64Key)
    if err != nil {
    return "", err
    }
    Severity: Minor
    Found in pkg/crypto/aes/cbc_pkcs5_padding.go and 1 other location - About 45 mins to fix
    pkg/crypto/aes/gcm.go on lines 28..37
    Category
    Status