Searched defs:certificateNotBefore (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/keystore/java/android/security/keystore/
H A DKeyGenParameterSpec.java276 Date certificateNotBefore,
300 if (certificateNotBefore == null) {
301 certificateNotBefore = DEFAULT_CERT_NOT_BEFORE;
310 if (certificateNotAfter.before(certificateNotBefore)) {
311 throw new IllegalArgumentException("certificateNotAfter < certificateNotBefore");
320 mCertificateNotBefore = Utils.cloneIfNotNull(certificateNotBefore);
269 KeyGenParameterSpec( String keyStoreAlias, int uid, int keySize, AlgorithmParameterSpec spec, X500Principal certificateSubject, BigInteger certificateSerialNumber, Date certificateNotBefore, Date certificateNotAfter, Date keyValidityStart, Date keyValidityForOriginationEnd, Date keyValidityForConsumptionEnd, @KeyProperties.PurposeEnum int purposes, @KeyProperties.DigestEnum String[] digests, @KeyProperties.EncryptionPaddingEnum String[] encryptionPaddings, @KeyProperties.SignaturePaddingEnum String[] signaturePaddings, @KeyProperties.BlockModeEnum String[] blockModes, boolean randomizedEncryptionRequired, boolean userAuthenticationRequired, int userAuthenticationValidityDurationSeconds, byte[] attestationChallenge, boolean uniqueIdIncluded, boolean userAuthenticationValidWhileOnBody, boolean invalidatedByBiometricEnrollment) argument

Completed in 47 milliseconds