Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for NotBefore (0.2 sec)

  1. src/crypto/x509/x509_test.go

    						Type:  []int{2, 5, 4, 42},
    						Value: "Gopher",
    					},
    					// This should override the Country, above.
    					{
    						Type:  []int{2, 5, 4, 6},
    						Value: "NL",
    					},
    				},
    			},
    			NotBefore: time.Unix(1000, 0),
    			NotAfter:  time.Unix(100000, 0),
    
    			SignatureAlgorithm: test.sigAlgo,
    
    			SubjectKeyId: []byte{1, 2, 3, 4},
    			KeyUsage:     KeyUsageCertSign,
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  2. src/crypto/x509/verify_test.go

    	serialNumber, _ := rand.Int(rand.Reader, serialNumberLimit)
    
    	template := &Certificate{
    		SerialNumber: serialNumber,
    		Subject:      pkix.Name{CommonName: cn},
    		NotBefore:    time.Now().Add(-1 * time.Hour),
    		NotAfter:     time.Now().Add(24 * time.Hour),
    
    		KeyUsage:              KeyUsageKeyEncipherment | KeyUsageDigitalSignature | KeyUsageCertSign,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  3. cmd/admin-handlers.go

    				check ^= xxh3.HashString(v.String())
    			}
    			tlsInfo.Certs = append(tlsInfo.Certs, madmin.TLSCert{
    				PubKeyAlgo:    c.PublicKeyAlgorithm.String(),
    				SignatureAlgo: c.SignatureAlgorithm.String(),
    				NotBefore:     c.NotBefore,
    				NotAfter:      c.NotAfter,
    				Checksum:      strconv.FormatUint(check, 16),
    			})
    		}
    	}
    	return tlsInfo
    }
    
    // ServerInfoHandler - GET /minio/admin/v3/info
    // ----------
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    }
    
    type CertInfo struct {
    	Version              uint32
    	SerialNumber         CryptIntegerBlob
    	SignatureAlgorithm   CryptAlgorithmIdentifier
    	Issuer               CertNameBlob
    	NotBefore            Filetime
    	NotAfter             Filetime
    	Subject              CertNameBlob
    	SubjectPublicKeyInfo CertPublicKeyInfo
    	IssuerUniqueId       CryptBitBlob
    	SubjectUniqueId      CryptBitBlob
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__certificates.k8s.io__v1_openapi.json

                "description": "expirationSeconds is the requested duration of validity of the issued certificate. The certificate signer may issue a certificate with a different validity duration so a client must check the delta between the notBefore and and notAfter fields in the issued certificate to determine the actual duration.\n\nThe v1.22+ in-tree implementations of the well-known Kubernetes signers will honor this field as long as the requested duration is not greater than the maximum...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 151.7K bytes
    - Viewed (0)
Back to top