Skip to content
Snippets Groups Projects
Commit c502c22c authored by Klaus Fischer's avatar Klaus Fischer
Browse files

Defined method names

parent 781c83a5
No related branches found
No related tags found
1 merge request!3Feature/440 mvp net sdk part 1
...@@ -3,10 +3,22 @@ using FitConnect.Models; ...@@ -3,10 +3,22 @@ using FitConnect.Models;
namespace FitConnect; namespace FitConnect;
public interface IBaseFunctionality { public interface IBaseFunctionality {
/// <summary>
/// Get OAuth2 token for FitConnect API
/// The credentials can be created there:
/// https://portal.auth-testing.fit-connect.fitko.dev/login
/// </summary>
/// <param name="clientId">Your Client ID</param>
/// <param name="clientSecret">Your Client Secret</param>
/// <param name="scope">The scope of your API token</param>
/// <returns></returns>
Task<OAuthAccessToken> GetTokenAsync(string clientId, string clientSecret, Task<OAuthAccessToken> GetTokenAsync(string clientId, string clientSecret,
string? scope = null); string? scope = null);
Task<SecurityEventToken> GetSetDataAsync();
// Receive SecurityEventToken and check signature /// <summary>
} /// Receive the SET data
\ No newline at end of file /// </summary>
/// <returns></returns>
Task<SecurityEventToken> GetSetDataAsync();
}
namespace FitConnect; namespace FitConnect;
public interface ISender : IBaseFunctionality { public interface ISender : IBaseFunctionality {
// Check public keys /// <summary>
Task<bool> CheckPublicKeyAsync(string publicKey); /// Check public keys
/// </summary>
/// <returns></returns>
Task<bool> CheckPublicKeyAsync();
// Encrypt Data (Fachdaten)
byte[] EncryptDataAsync(string data, string publicKey);
// Encrypt attachments (Anhänge) /// <summary>
Task<string> EncryptAttachmentAsync(string attachment, string publicKey); /// Encrypt Data (Fachdaten)
/// </summary>
/// <param name="data"></param>
/// <returns></returns>
byte[] EncryptDataAsync(string data);
// Create Metadata incl. Hash
Task<string> CreateMetadataAsync(string data, string attachment, string publicKey); /// <summary>
} /// Encrypt attachments (Anhänge)
\ No newline at end of file /// </summary>
/// <param name="attachment"></param>
/// <returns></returns>
Task<byte[]> EncryptAttachmentAsync(byte[] attachment);
/// <summary>
/// Create Metadata incl. Hash
/// </summary>
/// <param name="data"></param>
/// <param name="attachment"></param>
/// <returns></returns>
Task<string> CreateMetadataAsync(string data, byte[] attachment);
}
...@@ -7,12 +7,16 @@ public interface ISubscriber : IBaseFunctionality { ...@@ -7,12 +7,16 @@ public interface ISubscriber : IBaseFunctionality {
/// Decrypt Data (Fachdaten) /// Decrypt Data (Fachdaten)
/// </summary> /// </summary>
/// <param name="data">(Fachdaten)</param> /// <param name="data">(Fachdaten)</param>
/// <param name="privateKey">Your private key for decryption</param>
/// <returns></returns> /// <returns></returns>
Task<string> DecryptDataAsync(string data, string privateKey); Task<byte[]> DecryptDataAsync(byte[] data);
// Decrypt attachments (Anhänge)
Task<string> DecryptAttachmentAsync(string attachment, string privateKey); /// <summary>
/// Decrypt attachments (Anhänge)
/// </summary>
/// <param name="attachment">Encrypted attachments</param>
/// <returns></returns>
Task<byte[]> DecryptAttachmentAsync(byte[] attachment);
/// <summary> /// <summary>
/// Checks the validity of the given metadata against the schema. /// Checks the validity of the given metadata against the schema.
...@@ -21,10 +25,21 @@ public interface ISubscriber : IBaseFunctionality { ...@@ -21,10 +25,21 @@ public interface ISubscriber : IBaseFunctionality {
/// <returns></returns> /// <returns></returns>
Task<bool> CheckMetadataAsync(string jsonMetaData); Task<bool> CheckMetadataAsync(string jsonMetaData);
// Check Hash from Metadata /// <summary>
/// Check Hash from Metadata
/// </summary>
/// <param name="metadata">Metadata in JSON Format</param>
/// <returns></returns>
Task<bool> CheckHashAsync(string metadata); Task<bool> CheckHashAsync(string metadata);
// Create SecurityEventToken and signature
/// <summary>
/// Create SecurityEventToken and signature
/// </summary>
/// <param name="data"></param>
/// <param name="attachment"></param>
/// <param name="privateKey"></param>
/// <returns></returns>
Task<SecurityEventToken> CreateSecurityEventTokenAsync(string data, string attachment, Task<SecurityEventToken> CreateSecurityEventTokenAsync(string data, string attachment,
string privateKey); string privateKey);
} }
\ No newline at end of file
...@@ -10,13 +10,6 @@ public class Subscriber : FunctionalBaseClass, ISubscriber { ...@@ -10,13 +10,6 @@ public class Subscriber : FunctionalBaseClass, ISubscriber {
public Subscriber(ILogger logger, FitConnectEndpoints endpoints) : base(logger, endpoints) { public Subscriber(ILogger logger, FitConnectEndpoints endpoints) : base(logger, endpoints) {
} }
public async Task<string> DecryptDataAsync(string data, string privateKey) {
throw new NotImplementedException();
}
public async Task<string> DecryptAttachmentAsync(string attachment, string privateKey) {
throw new NotImplementedException();
}
private async Task<string> GetContentFromEmbeddedResource(string filename) { private async Task<string> GetContentFromEmbeddedResource(string filename) {
var assembly = typeof(Subscriber).GetTypeInfo().Assembly; var assembly = typeof(Subscriber).GetTypeInfo().Assembly;
...@@ -32,6 +25,14 @@ public class Subscriber : FunctionalBaseClass, ISubscriber { ...@@ -32,6 +25,14 @@ public class Subscriber : FunctionalBaseClass, ISubscriber {
} }
} }
public async Task<byte[]> DecryptDataAsync(byte[] data) {
throw new NotImplementedException();
}
public async Task<byte[]> DecryptAttachmentAsync(byte[] attachment) {
throw new NotImplementedException();
}
/// <summary> /// <summary>
/// Checks the validity of the given metadata against the schema. /// Checks the validity of the given metadata against the schema.
/// </summary> /// </summary>
...@@ -49,6 +50,7 @@ public class Subscriber : FunctionalBaseClass, ISubscriber { ...@@ -49,6 +50,7 @@ public class Subscriber : FunctionalBaseClass, ISubscriber {
throw new NotImplementedException(); throw new NotImplementedException();
} }
public async Task<SecurityEventToken> CreateSecurityEventTokenAsync(string data, public async Task<SecurityEventToken> CreateSecurityEventTokenAsync(string data,
string attachment, string privateKey) { string attachment, string privateKey) {
throw new NotImplementedException(); throw new NotImplementedException();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment