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

/libcore/ojluni/src/main/java/sun/security/util/
H A DDerValue.java230 * @param stringTag the tag for the DER value to create
233 public DerValue(byte stringTag, String value) throws IOException { argument
234 data = init(stringTag, value);
340 private DerInputStream init(byte stringTag, String value) throws IOException { argument
343 tag = stringTag;
345 switch (stringTag) {
H A DDerInputStream.java550 * @param stringTag the tag for the type of string to read
553 * correspond to the stringTag above.
555 private String readString(byte stringTag, String stringName, argument
558 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 805 milliseconds