- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for encLogIf (0.04 sec)
-
cmd/logging.go
logger.LogIf(ctx, "ilm", err, errKind...) } func ilmLogOnceIf(ctx context.Context, err error, id string, errKind ...any) { logger.LogOnceIf(ctx, "ilm", err, id, errKind...) } func encLogIf(ctx context.Context, err error, errKind ...any) { logger.LogIf(ctx, "encryption", err, errKind...) } func encLogOnceIf(ctx context.Context, err error, id string, errKind ...any) {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 6.8K bytes - Viewed (0) -
cmd/object-api-datatypes.go
if !ok { return nil } data := []byte(z) if v, ok := o.UserDefined[archiveTypeMetadataKey]; ok && v == archiveTypeEnc { decrypted, err := o.metadataDecrypter(h)(archiveTypeEnc, data) if err != nil { encLogIf(GlobalContext, err) return nil } data = decrypted } return data } // Clone - Returns a cloned copy of current objectInfo func (o *ObjectInfo) Clone() (cinfo ObjectInfo) {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 21.2K bytes - Viewed (0) -
cmd/encryption-v1.go
} if _, encrypted := crypto.IsEncrypted(o.UserDefined); encrypted { decrypted, err := o.metadataDecrypter(h)("object-checksum", data) if err != nil { if !errors.Is(err, crypto.ErrSecretKeyMismatch) { encLogIf(GlobalContext, err) } return } data = decrypted } cs := hash.ReadPartCheckSums(data) if len(cs) == len(o.Parts) { for i := range o.Parts { o.Parts[i].Checksums = cs[i]
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 37.8K bytes - Viewed (0)