minor changes

This commit is contained in:
UbitUmarov 2024-09-16 21:08:11 +01:00
parent 7369bb6a52
commit 833d8f4991
4 changed files with 3 additions and 4 deletions

1
.gitattributes vendored
View file

@ -18,4 +18,3 @@
*.ogg binary
*.dll binary
*.exe binary
*.cs text eol=crlf

View file

@ -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)]

View file

@ -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)

View file

@ -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.