public void RevokeKey(Guid keyId, string reason = null)
 {
     _internalKeyManager.RevokeSingleKey(
         keyId: keyId,
         revocationDate: DateTimeOffset.UtcNow,
         reason: reason);
 }