Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for InternalException (0.18 sec)

  1. internal/kms/single-key.go

    		return nil, Error{
    			HTTPStatusCode: http.StatusBadRequest,
    			APICode:        "KMS.InternalException",
    			Err:            err,
    		}
    	}
    
    	if n := len(encryptedKey.IV); n != 16 {
    		return nil, Error{
    			HTTPStatusCode: http.StatusBadRequest,
    			APICode:        "KMS.InternalException",
    			Err:            fmt.Errorf("invalid iv size: %d", n),
    		}
    	}
    
    	var aead cipher.AEAD
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Fri Mar 01 21:09:42 GMT 2024
    - 7.9K bytes
    - Viewed (0)
Back to top