chovy-sign/GameBuilder/Psp/NpDrmInfo.cs

23 lines
500 B
C#
Raw Normal View History

2023-04-15 17:22:43 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2023-04-16 13:07:43 +00:00
namespace GameBuilder.Psp
2023-04-15 17:22:43 +00:00
{
public class NpDrmInfo
{
public string ContentId;
public byte[] VersionKey;
2023-04-16 20:51:24 +00:00
public int KeyIndex;
2023-04-15 17:22:43 +00:00
public NpDrmInfo(byte[] versionKey, string contentId, int keyType)
{
this.VersionKey = versionKey;
2023-04-16 20:51:24 +00:00
this.KeyIndex = keyType;
2023-04-15 17:22:43 +00:00
this.ContentId = contentId;
}
}
}