mirror of
https://github.com/bitwarden/server.git
synced 2025-04-04 20:50:21 -05:00
53 lines
1.3 KiB
C#
53 lines
1.3 KiB
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Bit.Api.Utilities
|
|
{
|
|
/// <summary>
|
|
/// Validates a string that is in encrypted form: "b64iv=|b64ct="
|
|
/// </summary>
|
|
public class EncryptedStringAttribute : ValidationAttribute
|
|
{
|
|
public EncryptedStringAttribute()
|
|
: base("{0} is not a valid encrypted string.")
|
|
{ }
|
|
|
|
public override bool IsValid(object value)
|
|
{
|
|
if(value == null)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
try
|
|
{
|
|
var encString = value?.ToString();
|
|
if(string.IsNullOrWhiteSpace(encString))
|
|
{
|
|
return false;
|
|
}
|
|
|
|
var encStringPieces = encString.Split('|');
|
|
if(encStringPieces.Length != 2)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
var iv = Convert.FromBase64String(encStringPieces[0]);
|
|
var ct = Convert.FromBase64String(encStringPieces[1]);
|
|
|
|
if(iv.Length < 1 || ct.Length < 1)
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
catch
|
|
{
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
}
|
|
}
|