Escape SCRAM usernames (authzid and authcid)
This commit is contained in:
parent
d6227ca0a1
commit
a97bd9c3a6
1 changed files with 38 additions and 0 deletions
|
@ -88,6 +88,44 @@
|
||||||
[super dealloc];
|
[super dealloc];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
- (void)setAuthzid: (OFString*)authzid_
|
||||||
|
{
|
||||||
|
OFString *old = authzid;
|
||||||
|
|
||||||
|
if (authzid_) {
|
||||||
|
OFMutableString *new = [[OFMutableString alloc]
|
||||||
|
initWithString: authzid_];
|
||||||
|
[new replaceOccurrencesOfString: @"="
|
||||||
|
withString: @"=3D"];
|
||||||
|
[new replaceOccurrencesOfString: @","
|
||||||
|
withString: @"=2C"];
|
||||||
|
authzid = [new copy];
|
||||||
|
[new release];
|
||||||
|
} else
|
||||||
|
authzid = nil;
|
||||||
|
|
||||||
|
[old release];
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)setAuthcid: (OFString*)authcid_
|
||||||
|
{
|
||||||
|
OFString *old = authcid;
|
||||||
|
|
||||||
|
if (authcid_) {
|
||||||
|
OFMutableString *new = [[OFMutableString alloc]
|
||||||
|
initWithString: authcid_];
|
||||||
|
[new replaceOccurrencesOfString: @"="
|
||||||
|
withString: @"=3D"];
|
||||||
|
[new replaceOccurrencesOfString: @","
|
||||||
|
withString: @"=2C"];
|
||||||
|
authcid = [new copy];
|
||||||
|
[new release];
|
||||||
|
} else
|
||||||
|
authcid = nil;
|
||||||
|
|
||||||
|
[old release];
|
||||||
|
}
|
||||||
|
|
||||||
- (OFString *)_genNonce
|
- (OFString *)_genNonce
|
||||||
{
|
{
|
||||||
OFMutableString *nonce = [OFMutableString string];
|
OFMutableString *nonce = [OFMutableString string];
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue