diff options
author | rowanbeentje <rowan@beent.je> | 2012-03-18 17:12:52 +0000 |
---|---|---|
committer | rowanbeentje <rowan@beent.je> | 2012-03-18 17:12:52 +0000 |
commit | efd7982171996f7ba448fba269a728f6ff1afccc (patch) | |
tree | db0573690c6ecedb7d697b56f3322f86f8ee8b4f /Source/SPDataBase64EncodingAdditions.h | |
parent | f6de38fa5cc34461513670e52d5a9801ff8d8b32 (diff) | |
download | sequelpro-efd7982171996f7ba448fba269a728f6ff1afccc.tar.gz sequelpro-efd7982171996f7ba448fba269a728f6ff1afccc.tar.bz2 sequelpro-efd7982171996f7ba448fba269a728f6ff1afccc.zip |
- Remove the Colloquy-derived, GPL -[NSData base64EncodingWithLineLength:] method, and replace with an equivalent method derived from QSUtilities/PHP, which is MIT/BSD-alike licensed. New method is also at least ten times faster, up to much faster for long strings.
Diffstat (limited to 'Source/SPDataBase64EncodingAdditions.h')
-rw-r--r-- | Source/SPDataBase64EncodingAdditions.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/Source/SPDataBase64EncodingAdditions.h b/Source/SPDataBase64EncodingAdditions.h new file mode 100644 index 00000000..96474ee3 --- /dev/null +++ b/Source/SPDataBase64EncodingAdditions.h @@ -0,0 +1,30 @@ +// +// $Id$ +// +// SPDataBase64EncodingAdditions.m +// sequel-pro +// +// Created by Rowan Beentje on March 18th, 2012 +// +// This program is free software; you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation; either version 2 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// More info at <http://code.google.com/p/sequel-pro/> + + +@interface NSData (SPDataBase64EncodingAdditions) + +- (NSString *)base64EncodingWithLineLength:(NSUInteger)lineLength; + +@end |