mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-05-18 21:46:19 -04:00
test(groupware): add testcontainers based jmap test
* adds pkg/jmap/jmap_integration_test.go
* uses ghcr.io/stalwartlabs/stalwart:v0.13.2-alpine
* can be disabled by setting one of the following environment
variables, in the same fashion as ca0493b28
- CI=woodpecker
- CI_SYSTEM_NAME=woodpecker
- USE_TESTCONTAINERS=false
* dependencies:
- bump github.com/go-test/deep from 1.1.0 to 1.1.1
- add github.com/cention-sany/utf7
- add github.com/dustinkirkland/golang-petname
- add github.com/emersion/go-imap/v2
- add github.com/emersion/go-message
- add github.com/emersion/go-sasl
- add github.com/go-crypt/crypt
- add github.com/go-crypt/x
- add github.com/gogs/chardet
- add github.com/inbucket/html2text
- add github.com/jhilleryerd/enmime/v2
- add github.com/ssor/bom
- add gopkg.in/loremipsum.v1
This commit is contained in:
26
vendor/github.com/go-crypt/crypt/algorithm/const.go
generated
vendored
Normal file
26
vendor/github.com/go-crypt/crypt/algorithm/const.go
generated
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
package algorithm
|
||||
|
||||
const (
|
||||
// DigestSHA1 is te name for SHA1 digests.
|
||||
DigestSHA1 = "sha1"
|
||||
|
||||
// DigestSHA224 is te name for SHA224 digests.
|
||||
DigestSHA224 = "sha224"
|
||||
|
||||
// DigestSHA256 is te name for SHA256 digests.
|
||||
DigestSHA256 = "sha256"
|
||||
|
||||
// DigestSHA384 is te name for SHA384 digests.
|
||||
DigestSHA384 = "sha384"
|
||||
|
||||
// DigestSHA512 is te name for SHA512 digests.
|
||||
DigestSHA512 = "sha512"
|
||||
)
|
||||
|
||||
const (
|
||||
// SaltLengthDefault is the default salt size for most implementations.
|
||||
SaltLengthDefault = 16
|
||||
|
||||
// KeyLengthDefault is the default key size for most implementations.
|
||||
KeyLengthDefault = 32
|
||||
)
|
||||
Reference in New Issue
Block a user