Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/blame/commit/dcaf8356e6400543e10ff2ee89fc9b3bdf97ef77/MediaBrowser.Controller/Security/IEncryptionManager.cs
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Security
|
|
|
|
|
{
|
|
|
|
|
public interface IEncryptionManager
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Encrypts the string.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="value">The value.</param>
|
|
|
|
|
/// <returns>System.String.</returns>
|
|
|
|
|
string EncryptString(string value);
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Decrypts the string.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="value">The value.</param>
|
|
|
|
|
/// <returns>System.String.</returns>
|
|
|
|
|
string DecryptString(string value);
|
|
|
|
|
}
|
|
|
|
|
}
|