6 lines
203 B
C#
6 lines
203 B
C#
namespace Manager.YouTube.Util.Cipher.Operations;
|
|
|
|
public class CipherSlice(int indexToSlice) : ICipherOperation
|
|
{
|
|
public string Decipher(string cipherSignature) => cipherSignature[indexToSlice..];
|
|
} |