复制在Go中创建的CRL

时间:2019-07-09 16:55:24

标签: java go x509 pki certificate-revocation

我在Go中创建了一个CRL(将其解析为PEM),现在我想在Java中重新创建完全相同的CRL(以获得相同的PEM)。但是,我不确定该怎么做,我发现Go和Java中的CRL类非常不同。

我通过以下方式在Golang中创建了CRL:

var revokedCerts []pkix.RevokedCertificate

clientRevocation := pkix.RevokedCertificate{
    SerialNumber:   clientCert.SerialNumber,
    RevocationTime: timeToUseInRevocation.UTC(),
}

revokedCerts = append(revokedCerts, clientRevocation)


crlSubject := pkix.Name{
    Organization:  []string{"testorg", "TestOrg"},
    StreetAddress: []string{"TestAddress"},
    PostalCode:    []string{"0"},
    Province:      []string{"TestProvince"},
    Locality:      []string{"TestLocality"},
    Country:       []string{"TestCountry"},
    CommonName:    "Test Name",
}

var sigAlgorithm pkix.AlgorithmIdentifier
sigAlgorithm.Algorithm = asn1.ObjectIdentifier{1, 2, 840, 113549, 1, 1, 11}
sigAlgorithm.Parameters = asn1.NullRawValue

tbsCertList := pkix.TBSCertificateList{
    Version:             1,
    Signature:           sigAlgorithm,
    Issuer:              crlSubject.ToRDNSequence(),
    ThisUpdate:          timeToUseInRevocation,
    NextUpdate:          timeToUseInRevocation.Add(time.Millisecond * time.Duration(86400000)),
    RevokedCertificates: revokedCerts,
}
newCRL, err := asn1.Marshal(pkix.CertificateList{
    TBSCertList:        tbsCertList, // new CRL
    SignatureAlgorithm: sigAlgorithm,
    SignatureValue:     asn1.BitString{}, 
})
crlCreated, err := x509.ParseCRL(newCRL)

//CRL pem Block
crlPemBlock := &pem.Block{
    Type:  "X509 CRL",
    Bytes: newCRL,
}

var crlBuffer bytes.Buffer
err = pem.Encode(&crlBuffer, crlPemBlock)

我想用Java复制它。 我知道我有一些为空/无的变量(例如crl签名)。那是出于我想要做的目的。 我可以使用PEM并用Java读取CRL,但无法创建完全相同的CRL。

我也想在Java中也创建没有签名(所有参数都相等)的CRL。

0 个答案:

没有答案