Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Validate Security Certificate Format

MediumPython00:00
Practice interviewer
In session
5 left
00:00

Your question is Validate Security Certificate Format. Start with the requirements on the right.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.

Problem

At AegisCloud, certificate identifiers must follow a strict string format before they can be processed. Implement a function that returns True if a certificate string is valid and False otherwise.

Rules

A certificate string is valid if all of the following are true:

  1. It contains exactly three non-empty segments separated by colons: header:payload:signature.
  2. Each segment contains only uppercase letters (A-Z), digits (0-9), and the delimiter characters (, ), [, ], {, }.
  3. Across the entire string, all delimiters are balanced and properly nested.
  4. The string must not start or end with a colon, and it must not contain consecutive colons.

Formal Specification

  • Input: cert, a string
  • Output: bool — whether the certificate format is valid

Constraints

  • 1 <= len(cert) <= 10^5
  • The input string contains ASCII characters
  • A valid certificate must contain exactly two colons
  • Each of the three segments must be non-empty

Function Signature

def validate_certificate(cert):
Your solutionPython 3
You need to log in / sign up to run or submit.
Run your code to see test output