mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-29 09:42:06 +01:00
Make digest() in EntityCapsManager synchronized
Fixes SMACK-617
This commit is contained in:
parent
4000adb70c
commit
a848437284
1 changed files with 4 additions and 1 deletions
|
@ -654,7 +654,10 @@ public class EntityCapsManager extends Manager {
|
||||||
// encoded using Base64 as specified in Section 4 of RFC 4648
|
// encoded using Base64 as specified in Section 4 of RFC 4648
|
||||||
// (note: the Base64 output MUST NOT include whitespace and MUST set
|
// (note: the Base64 output MUST NOT include whitespace and MUST set
|
||||||
// padding bits to zero).
|
// padding bits to zero).
|
||||||
byte[] digest = md.digest(sb.toString().getBytes());
|
byte[] digest;
|
||||||
|
synchronized(md) {
|
||||||
|
digest = md.digest(sb.toString().getBytes());
|
||||||
|
}
|
||||||
return Base64.encodeBytes(digest);
|
return Base64.encodeBytes(digest);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue