OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:issuerKeyHash
(Results
1 - 5
of
5
) sorted by null
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ocsp/
CertID.java
18
ASN1OctetString
issuerKeyHash
;
24
ASN1OctetString
issuerKeyHash
,
29
this.
issuerKeyHash
=
issuerKeyHash
;
38
issuerKeyHash
= (ASN1OctetString)seq.getObjectAt(2);
76
return
issuerKeyHash
;
90
*
issuerKeyHash
OCTET STRING, -- Hash of Issuers public key
100
v.add(
issuerKeyHash
);
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/ocsp/
CertificateID.java
147
ASN1OctetString
issuerKeyHash
= new DEROctetString(digCalc.getDigest());
149
return new CertID(digCalc.getAlgorithmIdentifier(), issuerNameHash,
issuerKeyHash
, serialNumber);
/external/conscrypt/common/src/main/java/org/conscrypt/ct/
CertificateEntry.java
52
private final byte[]
issuerKeyHash
;
58
private CertificateEntry(LogEntryType entryType, byte[] certificate, byte[]
issuerKeyHash
) {
59
if (entryType == LogEntryType.PRECERT_ENTRY &&
issuerKeyHash
== null) {
60
throw new IllegalArgumentException("
issuerKeyHash
missing for precert entry.");
61
} else if (entryType == LogEntryType.X509_ENTRY &&
issuerKeyHash
!= null) {
62
throw new IllegalArgumentException("unexpected
issuerKeyHash
for X509 entry.");
65
if (
issuerKeyHash
!= null &&
issuerKeyHash
.length != CTConstants.ISSUER_KEY_HASH_LENGTH) {
66
throw new IllegalArgumentException("
issuerKeyHash
must be 32 bytes long");
70
this.
issuerKeyHash
= issuerKeyHash
[
all
...]
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/ct/
CertificateEntry.java
57
private final byte[]
issuerKeyHash
;
63
private CertificateEntry(LogEntryType entryType, byte[] certificate, byte[]
issuerKeyHash
) {
64
if (entryType == LogEntryType.PRECERT_ENTRY &&
issuerKeyHash
== null) {
65
throw new IllegalArgumentException("
issuerKeyHash
missing for precert entry.");
66
} else if (entryType == LogEntryType.X509_ENTRY &&
issuerKeyHash
!= null) {
67
throw new IllegalArgumentException("unexpected
issuerKeyHash
for X509 entry.");
70
if (
issuerKeyHash
!= null &&
issuerKeyHash
.length != CTConstants.ISSUER_KEY_HASH_LENGTH) {
71
throw new IllegalArgumentException("
issuerKeyHash
must be 32 bytes long");
75
this.
issuerKeyHash
= issuerKeyHash
[
all
...]
/external/wpa_supplicant_8/src/crypto/
tls_openssl_ocsp.c
43
*
issuerKeyHash
OCTET STRING, -- Hash of Issuer's public key
49
ASN1_OCTET_STRING *
issuerKeyHash
;
172
ASN1_SIMPLE(CertID,
issuerKeyHash
, ASN1_OCTET_STRING),
445
wpa_printf(MSG_DEBUG, "OpenSSL: calculated
issuerKeyHash
: %s",
450
if (ASN1_OCTET_STRING_cmp(certid->
issuerKeyHash
, hash)) {
728
txt = octet_string_str(sresp->certID->
issuerKeyHash
);
731
"OpenSSL: certID
issuerKeyHash
: %s", txt);
783
ASN1_OCTET_STRING_cmp(cid1->
issuerKeyHash
,
784
cid2->
issuerKeyHash
) != 0)) {
Completed in 1911 milliseconds