mirror of
https://github.com/Readarr/Readarr
synced 2026-05-01 17:21:09 +02:00
12 lines
No EOL
245 B
C#
12 lines
No EOL
245 B
C#
namespace NzbDrone.Common.OAuth
|
|
{
|
|
/// <summary>
|
|
/// The encryption method to use when hashing a request signature.
|
|
/// </summary>
|
|
public enum OAuthSignatureMethod
|
|
{
|
|
HmacSha1,
|
|
PlainText,
|
|
RsaSha1
|
|
}
|
|
} |