Lines Matching refs:period
44 NSNumber *period = parsePeriod([query objectForKey:@"period"]);
52 if(![self hasValidType:_type key:key issuer:issuer counter:counter algorithm:algorithm digits:_digits period:period backgroundColor:backgroundColor]) {
64 period:period.intValue
144 period:(NSNumber *)period
154 return period;
179 period:(u_int32_t)period
187 return [FRATotpOathMechanism mechanismWithDatabase:database identityModel:identityModel secretKey:key HMACAlgorithm:algorithm codeLength:codeLength period:period];
273 static NSNumber* parsePeriod(const NSString *period) {
274 if (period.length == 0) {
278 if (!isNumeric(period)) {
282 uint32_t intPeriod = [period intValue];