(Context context, List<Address> recipients, boolean all)
| 74 | } |
| 75 | |
| 76 | static boolean hasPgpKey(Context context, List<Address> recipients, boolean all) { |
| 77 | return hasPgpKey(context, recipients, all, KEY_TIMEOUT); // milliseconds |
| 78 | } |
| 79 | |
| 80 | private static boolean hasPgpKey(Context context, List<Address> recipients, boolean all, long timeout) { |
| 81 | if (recipients == null || recipients.size() == 0) |