Home | History | Annotate | Download | only in zfile

Lines Matching refs:certificate

61          * Certificate used to sign the APK. Is {@code null} if and only if {@link #key} is
65 private final X509Certificate certificate;
111 * @param certificate certificate used to sign the APK. Is {@code null} if and only if
129 @Nullable X509Certificate certificate,
137 Preconditions.checkArgument((key == null) == (certificate == null),
138 "(key == null) != (certificate == null)");
143 this.certificate = certificate;
175 * Obtains the certificate used to sign the APK.
177 * @return the certificate or {@code null} if the APK should not be signed; this will return
182 return certificate;