- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 117 for Decrypted (0.06 sec)
-
api/go1.5.txt
pkg crypto, const SHA512_224 = 14 pkg crypto, const SHA512_224 Hash pkg crypto, const SHA512_256 = 15 pkg crypto, const SHA512_256 Hash pkg crypto, type Decrypter interface { Decrypt, Public } pkg crypto, type Decrypter interface, Decrypt(io.Reader, []uint8, DecrypterOpts) ([]uint8, error) pkg crypto, type Decrypter interface, Public() PublicKey pkg crypto, type DecrypterOpts interface {} pkg crypto/cipher, func NewGCMWithNonceSize(Block, int) (AEAD, error)
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Jul 30 21:14:09 UTC 2015 - 46.6K bytes - Viewed (0) -
cmd/erasure-metadata.go
fmt.Fprint(h, meta.TransitionStatus) fmt.Fprint(h, meta.TransitionTier) fmt.Fprint(h, meta.TransitionedObjName) fmt.Fprint(h, meta.TransitionVersionID) } // If metadata says encrypted, ask for it in quorum. if etyp, ok := crypto.IsEncrypted(meta.Metadata); ok { fmt.Fprint(h, etyp) } // If compressed, look for compressed FileInfo only if meta.IsCompressed() {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Oct 31 22:10:24 UTC 2024 - 21.3K bytes - Viewed (0) -
fess-crawler-lasta/src/main/resources/crawler/extractor.xml
"application/oebps-package+xml", "application/ogg", "application/kate", "application/onenote", "application/parityfec", "application/patch-ops-error+xml", "application/pgp-encrypted", "application/pgp-keys", "application/pgp-signature", "application/pics-rules", "application/pidf+xml", "application/pidf-diff+xml", "application/pkcs10", "application/pkcs7-mime",
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Sat Aug 01 21:40:30 UTC 2020 - 49K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/CallTest.kt
server.useHttps(handshakeCertificates.sslSocketFactory()) server.enqueue( MockResponse(inTunnel = true), ) server.enqueue( MockResponse(body = "encrypted response from the origin server"), ) val hostnameVerifier = RecordingHostnameVerifier() client = client.newBuilder() .sslSocketFactory(
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Wed Apr 10 19:46:48 UTC 2024 - 142.5K bytes - Viewed (0) -
tests/update_test.go
return nil } type Token struct { UserID int `gorm:"primary_key"` Content string `gorm:"type:varchar(100)"` } func (t *Token) BeforeSave(tx *gorm.DB) error { t.Content += "_encrypted" return nil } func TestSaveWithHooks(t *testing.T) { DB.Migrator().DropTable(&Token{}, &TokenOwner{}) DB.AutoMigrate(&Token{}, &TokenOwner{})
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Mon Dec 04 03:50:58 UTC 2023 - 30.3K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.3.md
* More reliable kube-up/kube-down * Enable ICMP Type 3 Code 4 for ELBs * ARP caching fix * Use /dev/xvdXX names * ELB: * ELB proxy protocol support * mixed plaintext/encrypted ports support in ELBs * SSL support for ELB listeners * Allow VPC CIDR to be specified (experimental) * Fix problems with >2 security groups * GCP: * Enable using gcr.io as a Docker registry mirror.
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Thu Dec 24 02:28:26 UTC 2020 - 84K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/URLConnectionTest.kt
val hostnameVerifier = RecordingHostnameVerifier() server.useHttps(handshakeCertificates.sslSocketFactory()) server.enqueue(MockResponse(inTunnel = true)) server.enqueue(MockResponse(body = "encrypted response from the origin server")) client = client.newBuilder() .proxy(server.toProxyAddress()) .sslSocketFactory( handshakeCertificates.sslSocketFactory(),
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Jan 20 10:30:28 UTC 2024 - 131.7K bytes - Viewed (0) -
cmd/bucket-handlers.go
return } wantSize := int64(-1) if actualSize >= 0 { info := ObjectInfo{Size: actualSize} wantSize = info.EncryptedSize() } // do not try to verify encrypted content/ hashReader, err = hash.NewReader(ctx, reader, wantSize, "", "", actualSize) if err != nil { writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL) return }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Sep 12 12:24:04 UTC 2024 - 63.4K bytes - Viewed (0) -
cmd/api-errors.go
HTTPStatusCode: http.StatusNotFound, }, ErrInsecureClientRequest: { Code: "XMinioInsecureClientRequest", Description: "Cannot respond to plain-text request from TLS-encrypted server", HTTPStatusCode: http.StatusBadRequest, }, ErrRequestTimedout: { Code: "RequestTimeout",
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 01 22:13:18 UTC 2024 - 92.1K bytes - Viewed (0) -
cmd/test-utils_test.go
// clean up the temporary test backend. removeRoots(append(erasureDisks, fsDir)) } // ExecExtendedObjectLayerTest will execute the tests with combinations of encrypted & compressed. // This can be used to test functionality when reading and writing data. func ExecExtendedObjectLayerAPITest(t *testing.T, objAPITest objAPITestType, endpoints []string) {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 01 22:13:18 UTC 2024 - 77K bytes - Viewed (0)