Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for SHA256WITHRSA (0.09 sec)

  1. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/Certificate.kt

       * [Signature.getInstance]. Typical values are like "SHA256WithRSA".
       */
      val signatureAlgorithmName: String
        get() {
          return when (signature.algorithm) {
            ObjectIdentifiers.SHA256_WITH_RSA_ENCRYPTION -> "SHA256WithRSA"
            ObjectIdentifiers.SHA256_WITH_ECDSA -> "SHA256withECDSA"
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. okhttp-tls/src/test/java/okhttp3/tls/HeldCertificateTest.kt

            .certificateAuthority(0)
            .ecdsa256()
            .signedBy(root)
            .build()
        assertThat(root.certificate.sigAlgName).isEqualTo("SHA256WITHRSA", ignoreCase = true)
        assertThat(leaf.certificate.sigAlgName).isEqualTo("SHA256WITHRSA", ignoreCase = true)
      }
    
      @Test
      fun rsaSignedByEcdsa() {
        val root =
          HeldCertificate.Builder()
            .certificateAuthority(0)
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  3. api/go1.txt

    pkg crypto/x509, const NotAuthorizedToSign InvalidReason
    pkg crypto/x509, const RSA PublicKeyAlgorithm
    pkg crypto/x509, const SHA1WithRSA SignatureAlgorithm
    pkg crypto/x509, const SHA256WithRSA SignatureAlgorithm
    pkg crypto/x509, const SHA384WithRSA SignatureAlgorithm
    pkg crypto/x509, const SHA512WithRSA SignatureAlgorithm
    pkg crypto/x509, const TooManyIntermediates InvalidReason
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  4. api/go1.1.txt

    pkg crypto/x509, const PEMCipherDES = 1
    pkg crypto/x509, const PEMCipherDES PEMCipher
    pkg crypto/x509, const RSA = 1
    pkg crypto/x509, const SHA1WithRSA = 3
    pkg crypto/x509, const SHA256WithRSA = 4
    pkg crypto/x509, const SHA384WithRSA = 5
    pkg crypto/x509, const SHA512WithRSA = 6
    pkg crypto/x509, const TooManyIntermediates = 3
    pkg crypto/x509, const UnknownPublicKeyAlgorithm = 0
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
Back to top