Searched refs:stringTag (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/util/
H A DDerValue.java222 * @param stringTag the tag for the DER value to create
225 public DerValue(byte stringTag, String value) throws IOException { argument
226 data = init(stringTag, value);
323 private DerInputStream init(byte stringTag, String value) throws IOException { argument
326 tag = stringTag;
328 switch (stringTag) {
H A DDerInputStream.java471 * @param stringTag the tag for the type of string to read
474 * correspond to the stringTag above.
476 private String readString(byte stringTag, String stringName, argument
479 if (buffer.read() != stringTag)
H A DDerOutputStream.java446 * @param stringTag one of the DER string tags that indicate which
451 private void writeString(String s, byte stringTag, String enc) argument
455 write(stringTag);

Completed in 57 milliseconds