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

  /frameworks/base/packages/Osu/src/com/android/hotspot2/asn1/
OidMappings.java 9 public static class SigEntry {
13 private SigEntry(String sigAlgo, Asn1Oid keyAlgo) {
33 private static final Map<Asn1Oid, SigEntry> sSigAlgos = new HashMap<>();
93 sSigAlgos.put(sAlgo_SHA1withDSA, new SigEntry("SHA1withDSA", sAlgo_DSA));
95 sSigAlgos.put(sAlgo_MD2withRSA, new SigEntry("MD2withRSA", sAlgo_RSA));
96 sSigAlgos.put(sAlgo_MD5withRSA, new SigEntry("MD5withRSA", sAlgo_RSA));
97 sSigAlgos.put(sAlgo_SHA1withRSA, new SigEntry("SHA1withRSA", sAlgo_RSA));
98 sSigAlgos.put(sAlgo_SHA224withRSA, new SigEntry(null, sAlgo_RSA));
99 sSigAlgos.put(sAlgo_SHA256withRSA, new SigEntry("SHA256withRSA", sAlgo_RSA));
100 sSigAlgos.put(sAlgo_SHA384withRSA, new SigEntry("SHA384withRSA", sAlgo_RSA))
    [all...]
  /frameworks/base/packages/Osu/src/com/android/hotspot2/est/
ESTHandler.java 346 OidMappings.SigEntry sigEntry = OidMappings.getSigEntry(oid);
347 if (sigEntry != null) {
348 sigAlgo = sigEntry.getSigAlgo();
349 keyAlgoOID = sigEntry.getKeyAlgo();

Completed in 393 milliseconds