Class FileCryptor
ファイルの暗号化/復号を行います
Inherited Members
Namespace: Pixiv.VroidSdk.Crypt
Assembly: Pixiv.VroidSdk.dll
Syntax
public class FileCryptor : IFileReadWrite, IFileRead, IFileWrite
Constructors
FileCryptor(PasswordGenerator)
コンストラクタ
Declaration
public FileCryptor(PasswordGenerator generator)
Parameters
Type | Name | Description |
---|---|---|
PasswordGenerator | generator | ファイルの暗号化用パスワードのジェネレータ |
Methods
IsFileExist(String)
ファイルが存在するかチェックする
Declaration
public bool IsFileExist(string path)
Parameters
Type | Name | Description |
---|---|---|
String | path |
Returns
Type | Description |
---|---|
Boolean | ファイルの有無 |
Load(String)
ファイルを読み込む
Declaration
public byte[] Load(string path)
Parameters
Type | Name | Description |
---|---|---|
String | path |
Returns
Type | Description |
---|---|
Byte[] | 復号されたバイナリ |
Exceptions
Type | Condition |
---|---|
FileNotFoundException | ファイルが存在しない |
Save(String, Byte[])
ファイルを特定の場所に保存する
Declaration
public void Save(string path, byte[] data)
Parameters
Type | Name | Description |
---|---|---|
String | path | |
Byte[] | data | 書き込むバイナリ |