File: KeyManagement\KeyExtensions.cs
Web Access
Project: src\src\DataProtection\DataProtection\src\Microsoft.AspNetCore.DataProtection.csproj (Microsoft.AspNetCore.DataProtection)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using System;
 
namespace Microsoft.AspNetCore.DataProtection.KeyManagement;
 
internal static class KeyExtensions
{
    public static bool IsExpired(this IKey key, DateTimeOffset now)
    {
        return (key.ExpirationDate <= now);
    }
}