Home | History | Annotate | Download | only in security

Lines Matching refs:Signature

26 import java.security.Signature;
32 @AndroidOnly("Android doesn't include MD2withRSA signature algorithm")
38 Signature signature = Signature.getInstance("MD2withRSA");
39 fail("MD2withRSA for signature verification must not be supported");
45 Signature signature = Signature.getInstance("MD2WithRSA");
46 fail("MD2withRSA for signature verification must not be supported");
52 Signature signature = Signature.getInstance("MD2WITHRSA");
53 fail("MD2withRSA for signature verification must not be supported");
59 Signature signature = Signature.getInstance("MD2withRSAEncryption");
60 fail("MD2withRSA for signature verification must not be supported");
66 Signature signature = Signature.getInstance("MD2WithRSAEncryption");
67 fail("MD2withRSA for signature verification must not be supported");
73 Signature signature = Signature.getInstance("MD2WITHRSAENCRYPTION");
74 fail("MD2withRSA for signature verification must not be supported");
80 Signature signature = Signature.getInstance("MD2/RSA");
81 fail("MD2withRSA for signature verification must not be supported");
87 Signature signature = Signature.getInstance("1.2.840.113549.1.1.2");
88 fail("MD2withRSA for signature verification must not be supported");
100 Signature signature = Signature.getInstance("MD2withRSA");
101 signature = Signature.getInstance("MD2WithRSA");
102 signature = Signature.getInstance("MD2WITHRSA");
103 signature = Signature.getInstance("MD2withRSAEncryption");
104 signature = Signature.getInstance("MD2WithRSAEncryption");
105 signature = Signature.getInstance("MD2WITHRSAENCRYPTION");
106 signature = Signature.getInstance("MD2/RSA");
107 signature = Signature.getInstance("1.2.840.113549.1.1.2");
116 put("Signature.MD2WithRSAEncryption",
118 put("Alg.Alias.Signature.MD2WITHRSAENCRYPTION",
120 put("Alg.Alias.Signature.MD2WithRSA", "MD2WithRSAEncryption");
121 put("Alg.Alias.Signature.MD2withRSA", "MD2WithRSAEncryption");
122 put("Alg.Alias.Signature.MD2/RSA", "MD2WithRSAEncryption");
123 put("Alg.Alias.Signature.1.2.840.113549.1.1.2",
128 public static class MD2withRSA extends Signature {