minor changes
This commit is contained in:
1
.gitattributes
vendored
1
.gitattributes
vendored
@@ -18,4 +18,3 @@
|
||||
*.ogg binary
|
||||
*.dll binary
|
||||
*.exe binary
|
||||
*.cs text eol=crlf
|
||||
|
||||
@@ -1421,7 +1421,7 @@ namespace OpenSim.Framework
|
||||
}
|
||||
}
|
||||
|
||||
return $"{Convert.ToHexString(iv)}:{Convert.ToHexString(encryptedText)}";
|
||||
return $"{Convert.ToHexString(iv)}:{Convert.ToHexString(encryptedText).ToLower()}";
|
||||
}
|
||||
|
||||
[MethodImpl(MethodImplOptions.AggressiveInlining)]
|
||||
|
||||
@@ -6549,7 +6549,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||
OSSLShoutError("osAESEncrypt: Failed to encrypt!");
|
||||
return LSL_String.Empty;
|
||||
}
|
||||
return ret.ToString().ToLower();
|
||||
return ret.ToString();
|
||||
}
|
||||
|
||||
public LSL_String osAESDecrypt(string secret, string encryptedText)
|
||||
|
||||
@@ -309,7 +309,7 @@
|
||||
;; default is false
|
||||
; TelehubAllowLandmark = false
|
||||
|
||||
|
||||
|
||||
;; Let's Encrypt and others ".pem" certificates converter settings.
|
||||
;; Enabling this feature will automatically convert the CA .pem certificates to
|
||||
;; OpenSim compatible PKCS12 .p12 and .pfx certificates on every server startup.
|
||||
|
||||
Reference in New Issue
Block a user