That fuck shit the fascists are using
1package org.tm.archive.crypto;
2
3import android.content.Context;
4import android.content.Intent;
5
6import org.tm.archive.service.KeyCachingService;
7
8/**
9 * This class processes key exchange interactions.
10 *
11 * @author Moxie Marlinspike
12 */
13
14public class SecurityEvent {
15
16 public static final String SECURITY_UPDATE_EVENT = "org.tm.archive.KEY_EXCHANGE_UPDATE";
17
18 public static void broadcastSecurityUpdateEvent(Context context) {
19 Intent intent = new Intent(SECURITY_UPDATE_EVENT);
20 intent.setPackage(context.getPackageName());
21 context.sendBroadcast(intent, KeyCachingService.KEY_PERMISSION);
22 }
23
24}