OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DerValue
(Results
76 - 93
of
93
) sorted by null
1
2
3
4
/libcore/ojluni/src/main/java/sun/security/x509/
RDN.java
241
RDN(
DerValue
rdn) throws IOException {
242
if (rdn.tag !=
DerValue
.tag_Set) {
246
DerValue
[] avaset = dis.getSet(5);
327
* @returns
DerValue
of attribute value; null if attribute does not exist
329
DerValue
findAttribute(ObjectIdentifier oid) {
345
out.putOrderedSetOf(
DerValue
.tag_Set, assertion);
AlgorithmId.java
78
protected
DerValue
params;
110
private AlgorithmId(ObjectIdentifier oid,
DerValue
params)
167
params = new
DerValue
(algParams.getEncoded());
202
tmp.write(
DerValue
.tag_Sequence, bytes);
243
AlgorithmId.parse(new
DerValue
(getEncodedParams()));
361
public static AlgorithmId parse(
DerValue
val) throws IOException {
362
if (val.tag !=
DerValue
.tag_Sequence) {
370
DerValue
params;
378
if (params.tag ==
DerValue
.tag_Null) {
[
all
...]
CRLNumberExtension.java
133
DerValue
val = new
DerValue
(this.extensionValue);
URIName.java
92
* @param
derValue
the encoded DER URIName.
95
public URIName(
DerValue
derValue
) throws IOException {
96
this(
derValue
.getIA5String());
157
public static URIName nameConstraint(
DerValue
value) throws IOException {
CertificateSerialNumber.java
96
* Create the object, decoding the values from the passed
DerValue
.
101
public CertificateSerialNumber(
DerValue
val) throws IOException {
DNSName.java
61
* @param
derValue
the encoded DER DNSName.
64
public DNSName(
DerValue
derValue
) throws IOException {
65
name =
derValue
.getIA5String();
RFC822Name.java
50
* @param
derValue
the encoded DER RFC822Name.
53
public RFC822Name(
DerValue
derValue
) throws IOException {
54
name =
derValue
.getIA5String();
NetscapeCertTypeExtension.java
195
DerValue
val = new
DerValue
(this.extensionValue);
IPAddressName.java
35
import sun.security.util.
DerValue
;
78
* @params
derValue
the encoded DER IPAddressName.
81
public IPAddressName(
DerValue
derValue
) throws IOException {
82
this(
derValue
.getOctetString());
/libcore/ojluni/src/main/java/javax/security/auth/x500/
X500Principal.java
247
DerValue
der = new
DerValue
(is);
/libcore/ojluni/src/main/java/sun/security/ec/
ECParameters.java
192
DerValue
encodedParams = new
DerValue
(params);
193
if (encodedParams.tag ==
DerValue
.tag_ObjectId) {
208
if (encodedParams.tag !=
DerValue
.tag_Sequence) {
251
DerValue
v = in.getDerValue();
262
DerValue
v = in.getDerValue();
/libcore/ojluni/src/main/java/sun/security/provider/certpath/
X509CertPath.java
44
import sun.security.util.
DerValue
;
187
DerValue
[] seq = dis.getSequence(3);
308
derout.write(
DerValue
.tag_SequenceOf, bytes);
/libcore/ojluni/src/main/java/java/security/cert/
X509CertSelector.java
38
import sun.security.util.
DerValue
;
571
subjectPublicKey = X509Key.parse(new
DerValue
(subjectPublicKeyBytes));
[
all
...]
/libcore/ojluni/src/main/java/sun/security/validator/
SimpleValidator.java
38
import sun.security.util.
DerValue
;
289
encoded = new
DerValue
(encoded).getUnalignedBitString()
/libcore/ojluni/src/main/java/sun/security/provider/
X509Factory.java
36
import sun.security.util.
DerValue
;
488
if (c ==
DerValue
.tag_Sequence) {
/libcore/ojluni/src/main/java/sun/security/util/
ObjectIdentifier.java
252
if (type_id !=
DerValue
.tag_ObjectId)
318
out.write (
DerValue
.tag_ObjectId, encoding);
/libcore/
openjdk_java_files.mk
[
all
...]
/frameworks/base/
compiled-classes-phone
[
all
...]
Completed in 575 milliseconds
1
2
3
4