Java Code Examples for sun.security.krb5.internal.Krb5#ASN1_BAD_ID

The following examples show how to use sun.security.krb5.internal.Krb5#ASN1_BAD_ID . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: Realm.java    From dragonwell8_jdk with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Parse (unmarshal) a realm from a DER input stream.  This form
 * parsing might be used when expanding a value which is part of
 * a constructed sequence and uses explicitly tagged type.
 *
 * @exception Asn1Exception on error.
 * @param data the Der input stream value, which contains one or more marshaled value.
 * @param explicitTag tag number.
 * @param optional indicate if this data field is optional
 * @return an instance of Realm.
 *
 */
public static Realm parse(DerInputStream data, byte explicitTag, boolean optional)
        throws Asn1Exception, IOException, RealmException {
    if ((optional) && (((byte)data.peekByte() & (byte)0x1F) != explicitTag)) {
        return null;
    }
    DerValue der = data.getDerValue();
    if (explicitTag != (der.getTag() & (byte)0x1F))  {
        throw new Asn1Exception(Krb5.ASN1_BAD_ID);
    } else {
        DerValue subDer = der.getData().getDerValue();
        return new Realm(subDer);
    }
}
 
Example 2
Source File: Realm.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Parse (unmarshal) a realm from a DER input stream.  This form
 * parsing might be used when expanding a value which is part of
 * a constructed sequence and uses explicitly tagged type.
 *
 * @exception Asn1Exception on error.
 * @param data the Der input stream value, which contains one or more marshaled value.
 * @param explicitTag tag number.
 * @param optional indicate if this data field is optional
 * @return an instance of Realm.
 *
 */
public static Realm parse(DerInputStream data, byte explicitTag, boolean optional)
        throws Asn1Exception, IOException, RealmException {
    if ((optional) && (((byte)data.peekByte() & (byte)0x1F) != explicitTag)) {
        return null;
    }
    DerValue der = data.getDerValue();
    if (explicitTag != (der.getTag() & (byte)0x1F))  {
        throw new Asn1Exception(Krb5.ASN1_BAD_ID);
    } else {
        DerValue subDer = der.getData().getDerValue();
        return new Realm(subDer);
    }
}
 
Example 3
Source File: Realm.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Parse (unmarshal) a realm from a DER input stream.  This form
 * parsing might be used when expanding a value which is part of
 * a constructed sequence and uses explicitly tagged type.
 *
 * @exception Asn1Exception on error.
 * @param data the Der input stream value, which contains one or more marshaled value.
 * @param explicitTag tag number.
 * @param optional indicate if this data field is optional
 * @return an instance of Realm.
 *
 */
public static Realm parse(DerInputStream data, byte explicitTag, boolean optional)
        throws Asn1Exception, IOException, RealmException {
    if ((optional) && (((byte)data.peekByte() & (byte)0x1F) != explicitTag)) {
        return null;
    }
    DerValue der = data.getDerValue();
    if (explicitTag != (der.getTag() & (byte)0x1F))  {
        throw new Asn1Exception(Krb5.ASN1_BAD_ID);
    } else {
        DerValue subDer = der.getData().getDerValue();
        return new Realm(subDer);
    }
}
 
Example 4
Source File: Realm.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Parse (unmarshal) a realm from a DER input stream.  This form
 * parsing might be used when expanding a value which is part of
 * a constructed sequence and uses explicitly tagged type.
 *
 * @exception Asn1Exception on error.
 * @param data the Der input stream value, which contains one or more marshaled value.
 * @param explicitTag tag number.
 * @param optional indicate if this data field is optional
 * @return an instance of Realm.
 *
 */
public static Realm parse(DerInputStream data, byte explicitTag, boolean optional)
        throws Asn1Exception, IOException, RealmException {
    if ((optional) && (((byte)data.peekByte() & (byte)0x1F) != explicitTag)) {
        return null;
    }
    DerValue der = data.getDerValue();
    if (explicitTag != (der.getTag() & (byte)0x1F))  {
        throw new Asn1Exception(Krb5.ASN1_BAD_ID);
    } else {
        DerValue subDer = der.getData().getDerValue();
        return new Realm(subDer);
    }
}
 
Example 5
Source File: Realm.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Parse (unmarshal) a realm from a DER input stream.  This form
 * parsing might be used when expanding a value which is part of
 * a constructed sequence and uses explicitly tagged type.
 *
 * @exception Asn1Exception on error.
 * @param data the Der input stream value, which contains one or more marshaled value.
 * @param explicitTag tag number.
 * @param optional indicate if this data field is optional
 * @return an instance of Realm.
 *
 */
public static Realm parse(DerInputStream data, byte explicitTag, boolean optional)
        throws Asn1Exception, IOException, RealmException {
    if ((optional) && (((byte)data.peekByte() & (byte)0x1F) != explicitTag)) {
        return null;
    }
    DerValue der = data.getDerValue();
    if (explicitTag != (der.getTag() & (byte)0x1F))  {
        throw new Asn1Exception(Krb5.ASN1_BAD_ID);
    } else {
        DerValue subDer = der.getData().getDerValue();
        return new Realm(subDer);
    }
}
 
Example 6
Source File: Realm.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Parse (unmarshal) a realm from a DER input stream.  This form
 * parsing might be used when expanding a value which is part of
 * a constructed sequence and uses explicitly tagged type.
 *
 * @exception Asn1Exception on error.
 * @param data the Der input stream value, which contains one or more marshaled value.
 * @param explicitTag tag number.
 * @param optional indicate if this data field is optional
 * @return an instance of Realm.
 *
 */
public static Realm parse(DerInputStream data, byte explicitTag, boolean optional)
        throws Asn1Exception, IOException, RealmException {
    if ((optional) && (((byte)data.peekByte() & (byte)0x1F) != explicitTag)) {
        return null;
    }
    DerValue der = data.getDerValue();
    if (explicitTag != (der.getTag() & (byte)0x1F))  {
        throw new Asn1Exception(Krb5.ASN1_BAD_ID);
    } else {
        DerValue subDer = der.getData().getDerValue();
        return new Realm(subDer);
    }
}
 
Example 7
Source File: Realm.java    From jdk8u-jdk with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Parse (unmarshal) a realm from a DER input stream.  This form
 * parsing might be used when expanding a value which is part of
 * a constructed sequence and uses explicitly tagged type.
 *
 * @exception Asn1Exception on error.
 * @param data the Der input stream value, which contains one or more marshaled value.
 * @param explicitTag tag number.
 * @param optional indicate if this data field is optional
 * @return an instance of Realm.
 *
 */
public static Realm parse(DerInputStream data, byte explicitTag, boolean optional)
        throws Asn1Exception, IOException, RealmException {
    if ((optional) && (((byte)data.peekByte() & (byte)0x1F) != explicitTag)) {
        return null;
    }
    DerValue der = data.getDerValue();
    if (explicitTag != (der.getTag() & (byte)0x1F))  {
        throw new Asn1Exception(Krb5.ASN1_BAD_ID);
    } else {
        DerValue subDer = der.getData().getDerValue();
        return new Realm(subDer);
    }
}
 
Example 8
Source File: Realm.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Parse (unmarshal) a realm from a DER input stream.  This form
 * parsing might be used when expanding a value which is part of
 * a constructed sequence and uses explicitly tagged type.
 *
 * @exception Asn1Exception on error.
 * @param data the Der input stream value, which contains one or more marshaled value.
 * @param explicitTag tag number.
 * @param optional indicate if this data field is optional
 * @return an instance of Realm.
 *
 */
public static Realm parse(DerInputStream data, byte explicitTag, boolean optional)
        throws Asn1Exception, IOException, RealmException {
    if ((optional) && (((byte)data.peekByte() & (byte)0x1F) != explicitTag)) {
        return null;
    }
    DerValue der = data.getDerValue();
    if (explicitTag != (der.getTag() & (byte)0x1F))  {
        throw new Asn1Exception(Krb5.ASN1_BAD_ID);
    } else {
        DerValue subDer = der.getData().getDerValue();
        return new Realm(subDer);
    }
}
 
Example 9
Source File: Realm.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Parse (unmarshal) a realm from a DER input stream.  This form
 * parsing might be used when expanding a value which is part of
 * a constructed sequence and uses explicitly tagged type.
 *
 * @exception Asn1Exception on error.
 * @param data the Der input stream value, which contains one or more marshaled value.
 * @param explicitTag tag number.
 * @param optional indicate if this data field is optional
 * @return an instance of Realm.
 *
 */
public static Realm parse(DerInputStream data, byte explicitTag, boolean optional)
        throws Asn1Exception, IOException, RealmException {
    if ((optional) && (((byte)data.peekByte() & (byte)0x1F) != explicitTag)) {
        return null;
    }
    DerValue der = data.getDerValue();
    if (explicitTag != (der.getTag() & (byte)0x1F))  {
        throw new Asn1Exception(Krb5.ASN1_BAD_ID);
    } else {
        DerValue subDer = der.getData().getDerValue();
        return new Realm(subDer);
    }
}
 
Example 10
Source File: Realm.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Parse (unmarshal) a realm from a DER input stream.  This form
 * parsing might be used when expanding a value which is part of
 * a constructed sequence and uses explicitly tagged type.
 *
 * @exception Asn1Exception on error.
 * @param data the Der input stream value, which contains one or more marshaled value.
 * @param explicitTag tag number.
 * @param optional indicate if this data field is optional
 * @return an instance of Realm.
 *
 */
public static Realm parse(DerInputStream data, byte explicitTag, boolean optional)
        throws Asn1Exception, IOException, RealmException {
    if ((optional) && (((byte)data.peekByte() & (byte)0x1F) != explicitTag)) {
        return null;
    }
    DerValue der = data.getDerValue();
    if (explicitTag != (der.getTag() & (byte)0x1F))  {
        throw new Asn1Exception(Krb5.ASN1_BAD_ID);
    } else {
        DerValue subDer = der.getData().getDerValue();
        return new Realm(subDer);
    }
}
 
Example 11
Source File: Realm.java    From jdk8u_jdk with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Parse (unmarshal) a realm from a DER input stream.  This form
 * parsing might be used when expanding a value which is part of
 * a constructed sequence and uses explicitly tagged type.
 *
 * @exception Asn1Exception on error.
 * @param data the Der input stream value, which contains one or more marshaled value.
 * @param explicitTag tag number.
 * @param optional indicate if this data field is optional
 * @return an instance of Realm.
 *
 */
public static Realm parse(DerInputStream data, byte explicitTag, boolean optional)
        throws Asn1Exception, IOException, RealmException {
    if ((optional) && (((byte)data.peekByte() & (byte)0x1F) != explicitTag)) {
        return null;
    }
    DerValue der = data.getDerValue();
    if (explicitTag != (der.getTag() & (byte)0x1F))  {
        throw new Asn1Exception(Krb5.ASN1_BAD_ID);
    } else {
        DerValue subDer = der.getData().getDerValue();
        return new Realm(subDer);
    }
}
 
Example 12
Source File: Realm.java    From jdk8u-jdk with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Parse (unmarshal) a realm from a DER input stream.  This form
 * parsing might be used when expanding a value which is part of
 * a constructed sequence and uses explicitly tagged type.
 *
 * @exception Asn1Exception on error.
 * @param data the Der input stream value, which contains one or more marshaled value.
 * @param explicitTag tag number.
 * @param optional indicate if this data field is optional
 * @return an instance of Realm.
 *
 */
public static Realm parse(DerInputStream data, byte explicitTag, boolean optional)
        throws Asn1Exception, IOException, RealmException {
    if ((optional) && (((byte)data.peekByte() & (byte)0x1F) != explicitTag)) {
        return null;
    }
    DerValue der = data.getDerValue();
    if (explicitTag != (der.getTag() & (byte)0x1F))  {
        throw new Asn1Exception(Krb5.ASN1_BAD_ID);
    } else {
        DerValue subDer = der.getData().getDerValue();
        return new Realm(subDer);
    }
}
 
Example 13
Source File: Realm.java    From jdk8u-dev-jdk with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Parse (unmarshal) a realm from a DER input stream.  This form
 * parsing might be used when expanding a value which is part of
 * a constructed sequence and uses explicitly tagged type.
 *
 * @exception Asn1Exception on error.
 * @param data the Der input stream value, which contains one or more marshaled value.
 * @param explicitTag tag number.
 * @param optional indicate if this data field is optional
 * @return an instance of Realm.
 *
 */
public static Realm parse(DerInputStream data, byte explicitTag, boolean optional)
        throws Asn1Exception, IOException, RealmException {
    if ((optional) && (((byte)data.peekByte() & (byte)0x1F) != explicitTag)) {
        return null;
    }
    DerValue der = data.getDerValue();
    if (explicitTag != (der.getTag() & (byte)0x1F))  {
        throw new Asn1Exception(Krb5.ASN1_BAD_ID);
    } else {
        DerValue subDer = der.getData().getDerValue();
        return new Realm(subDer);
    }
}