HomeSort by relevance Sort by last modified time
    Searched refs:dateC (Results 1 - 2 of 2) sorted by null

  /dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/
DERUTCTime.java 88 char[] dateC = new char[bytes.length];
90 for (int i = 0; i != dateC.length; i++)
92 dateC[i] = (char)(bytes[i] & 0xff);
95 this.time = new String(dateC);
DERGeneralizedTime.java 87 char[] dateC = new char[bytes.length];
89 for (int i = 0; i != dateC.length; i++)
91 dateC[i] = (char)(bytes[i] & 0xff);
94 this.time = new String(dateC);

Completed in 677 milliseconds