From 83af6a556bd7fb24a663133cbe14e07829dfb4e8 Mon Sep 17 00:00:00 2001 From: JosepeDev Date: Wed, 4 Nov 2020 23:32:40 +0200 Subject: [PATCH] Updated links --- Files/EncryptedInt08.cs | 7 ++++--- Files/EncryptionTools.cs | 4 ++-- Files/eint.cs | 4 ++-- Files/elong.cs | 4 ++-- "Files/\342\200\217\342\200\217EncryptedInt16.cs" | 7 ++++--- ...7\342\200\217\342\200\217\342\200\217EncryptedInt32.cs" | 3 --- ...7\342\200\217\342\200\217\342\200\217EncryptedInt64.cs" | 3 --- ...342\200\217\342\200\217\342\200\217EncryptedInteger.cs" | 4 ++-- .../\342\200\217\342\200\217\342\200\253EncryptedInt.cs" | 4 ++-- 9 files changed, 18 insertions(+), 22 deletions(-) diff --git a/Files/EncryptedInt08.cs b/Files/EncryptedInt08.cs index 3b210b3..4253bd6 100644 --- a/Files/EncryptedInt08.cs +++ b/Files/EncryptedInt08.cs @@ -1,13 +1,14 @@ public class EncryptedInt08 : EncryptedInteger { /// 8-bit integer value range: -128 to 127 - /// - /// Wiki page: https://github.com/JosepeDev/SimpleEncryptionTools/wiki - /// Examples and tutorial: https://github.com/JosepeDev/SimpleEncryptionTools/wiki/Examples-&-Tutorial + + #region Constructors public EncryptedInt08(sbyte value) : base(value) { } public EncryptedInt08() : this(0) { } + + #endregion } \ No newline at end of file diff --git a/Files/EncryptionTools.cs b/Files/EncryptionTools.cs index b4731bd..abebcc3 100644 --- a/Files/EncryptionTools.cs +++ b/Files/EncryptionTools.cs @@ -7,8 +7,8 @@ static class EncryptionTools /// Just copy it with all the other files and forget about it. /// This is just a static class the classes uses to get a random float. /// - /// Wiki page: https://github.com/JosepeDev/SimpleEncryptionTools/wiki - /// Examples and tutorial: https://github.com/JosepeDev/SimpleEncryptionTools/wiki/Examples-&-Tutorial + /// Wiki page: https://github.com/JosepeDev/Variable-Encryption/wiki + /// Examples and tutorial: https://github.com/JosepeDev/Variable-Encryption/wiki/Examples-&-Tutorial #region Methods diff --git a/Files/eint.cs b/Files/eint.cs index f29663c..b34297c 100644 --- a/Files/eint.cs +++ b/Files/eint.cs @@ -6,8 +6,8 @@ public struct eint /// In the memory it is saved as a floating-point number that is affected by random values. { encryptionKey1 & encryptionKey2 } /// Every time the value changes, the encryption keys change too. And it works exactly as an int. /// - /// Wiki page: https://github.com/JosepeDev/SimpleEncryptionTools/wiki - /// Examples and tutorial: https://github.com/JosepeDev/SimpleEncryptionTools/wiki/Examples-&-Tutorial + /// Wiki page: https://github.com/JosepeDev/Variable-Encryption/wiki + /// Examples and tutorial: https://github.com/JosepeDev/Variable-Encryption/wiki/Examples-&-Tutorial #region Content diff --git a/Files/elong.cs b/Files/elong.cs index bdae00d..c876adb 100644 --- a/Files/elong.cs +++ b/Files/elong.cs @@ -6,8 +6,8 @@ public struct elong /// In the memory it is saved as a floating-point number that is affected by random values. { encryptionKey1 & encryptionKey2 } /// Every time the value changes, the encryption keys change too. And it works exactly as a long. /// - /// Wiki page: https://github.com/JosepeDev/SimpleEncryptionTools/wiki - /// Examples and tutorial: https://github.com/JosepeDev/SimpleEncryptionTools/wiki/Examples-&-Tutorial + /// Wiki page: https://github.com/JosepeDev/Variable-Encryption/wiki + /// Examples and tutorial: https://github.com/JosepeDev/Variable-Encryption/wiki/Examples-&-Tutorial #region Content diff --git "a/Files/\342\200\217\342\200\217EncryptedInt16.cs" "b/Files/\342\200\217\342\200\217EncryptedInt16.cs" index 3e20805..204ff91 100644 --- "a/Files/\342\200\217\342\200\217EncryptedInt16.cs" +++ "b/Files/\342\200\217\342\200\217EncryptedInt16.cs" @@ -1,13 +1,14 @@ public class EncryptedInt16 : EncryptedInteger { /// 16-bit integer value range: -32,768 to 32,767 - /// - /// Wiki page: https://github.com/JosepeDev/SimpleEncryptionTools/wiki - /// Examples and tutorial: https://github.com/JosepeDev/SimpleEncryptionTools/wiki/Examples-&-Tutorial + + #region Constructors public EncryptedInt16(short value) : base(value) { } public EncryptedInt16() : this(0) { } + + #endregion } \ No newline at end of file diff --git "a/Files/\342\200\217\342\200\217\342\200\217\342\200\217EncryptedInt32.cs" "b/Files/\342\200\217\342\200\217\342\200\217\342\200\217EncryptedInt32.cs" index cf1a3ab..168cf3b 100644 --- "a/Files/\342\200\217\342\200\217\342\200\217\342\200\217EncryptedInt32.cs" +++ "b/Files/\342\200\217\342\200\217\342\200\217\342\200\217EncryptedInt32.cs" @@ -1,9 +1,6 @@ public class EncryptedInt32 : EncryptedInteger { /// 32-bit integer value range: -2,147,483,648 to 2,147,483,647 - /// - /// Wiki page: https://github.com/JosepeDev/SimpleEncryptionTools/wiki - /// Examples and tutorial: https://github.com/JosepeDev/SimpleEncryptionTools/wiki/Examples-&-Tutorial #region Constructors diff --git "a/Files/\342\200\217\342\200\217\342\200\217\342\200\217EncryptedInt64.cs" "b/Files/\342\200\217\342\200\217\342\200\217\342\200\217EncryptedInt64.cs" index 44b924a..2519c42 100644 --- "a/Files/\342\200\217\342\200\217\342\200\217\342\200\217EncryptedInt64.cs" +++ "b/Files/\342\200\217\342\200\217\342\200\217\342\200\217EncryptedInt64.cs" @@ -1,9 +1,6 @@ public class EncryptedInt64 : EncryptedInteger { /// 64-bit integer value range: -9,223,372,036,854,775,808 to 9,223,372,036,854,775,807 - /// - /// Wiki page: https://github.com/JosepeDev/SimpleEncryptionTools/wiki - /// Examples and tutorial: https://github.com/JosepeDev/SimpleEncryptionTools/wiki/Examples-&-Tutorial #region Constructors diff --git "a/Files/\342\200\217\342\200\217\342\200\217\342\200\217EncryptedInteger.cs" "b/Files/\342\200\217\342\200\217\342\200\217\342\200\217EncryptedInteger.cs" index 1523297..42c0557 100644 --- "a/Files/\342\200\217\342\200\217\342\200\217\342\200\217EncryptedInteger.cs" +++ "b/Files/\342\200\217\342\200\217\342\200\217\342\200\217EncryptedInteger.cs" @@ -9,8 +9,8 @@ public class EncryptedInteger /// In the memory it is saved as a floating-point number that is affected by random values. { encryptionKey1 & encryptionKey2 } /// It is recommended to reset them everytime the program starts. /// - /// Wiki page: https://github.com/JosepeDev/SimpleEncryptionTools/wiki - /// Examples and tutorial: https://github.com/JosepeDev/SimpleEncryptionTools/wiki/Examples-&-Tutorial + /// Wiki page: https://github.com/JosepeDev/Variable-Encryption/wiki + /// Examples and tutorial: https://github.com/JosepeDev/Variable-Encryption/wiki/Examples-&-Tutorial /// /// ---- Generic setup: /// diff --git "a/Files/\342\200\217\342\200\217\342\200\253EncryptedInt.cs" "b/Files/\342\200\217\342\200\217\342\200\253EncryptedInt.cs" index 979daaa..d00629a 100644 --- "a/Files/\342\200\217\342\200\217\342\200\253EncryptedInt.cs" +++ "b/Files/\342\200\217\342\200\217\342\200\253EncryptedInt.cs" @@ -7,8 +7,8 @@ public class EncryptedInt /// In the memory it is saved as a floating-point number that is affected by random values. { encryptionKey1 & encryptionKey2 } /// It is recommended to reset them everytime the program starts. /// - /// Wiki page: https://github.com/JosepeDev/SimpleEncryptionTools/wiki - /// Examples and tutorial: https://github.com/JosepeDev/SimpleEncryptionTools/wiki/Examples-&-Tutorial + /// Wiki page: https://github.com/JosepeDev/Variable-Encryption/wiki + /// Examples and tutorial: https://github.com/JosepeDev/Variable-Encryption/wiki/Examples-&-Tutorial /// /// ---- Properties: ///