Home | History | Annotate | Download | only in pm

Lines Matching refs:publicKey

22 import java.security.PublicKey;
35 public final PublicKey publicKey;
42 * @param publicKey the public key for the signer encoded in Base64. Must
46 public VerifierInfo(String packageName, PublicKey publicKey) {
49 } else if (publicKey == null) {
50 throw new IllegalArgumentException("publicKey must not be null");
54 this.publicKey = publicKey;
59 publicKey = (PublicKey) source.readSerializable();
70 dest.writeSerializable(publicKey);