mirror of
https://github.com/OpenSim-NGC/OpenSim-Sasquatch.git
synced 2024-11-21 14:29:10 -07:00
Merge branch 'opensim:master' into master
This commit is contained in:
commit
c31875bae8
4 changed files with 4 additions and 5 deletions
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)
|
||||
|
@ -6577,7 +6577,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
|||
OSSLShoutError("osAESEncryptTo: Failed to encrypt!");
|
||||
return LSL_String.Empty;
|
||||
}
|
||||
return ret.ToString().ToLower();
|
||||
return ret.ToString();
|
||||
}
|
||||
|
||||
public LSL_String osAESDecryptFrom(string secret, string encryptedText, string ivString)
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue