| OLD | NEW |
| 1 /* | 1 /* |
| 2 Copyright (C) 2000-2001 Dawit Alemayehu <adawit@kde.org> | 2 Copyright (C) 2000-2001 Dawit Alemayehu <adawit@kde.org> |
| 3 Copyright (C) 2006 Alexey Proskuryakov <ap@webkit.org> | 3 Copyright (C) 2006 Alexey Proskuryakov <ap@webkit.org> |
| 4 Copyright (C) 2007, 2008 Apple Inc. All rights reserved. | 4 Copyright (C) 2007, 2008 Apple Inc. All rights reserved. |
| 5 Copyright (C) 2010 Patrick Gansterer <paroga@paroga.com> | 5 Copyright (C) 2010 Patrick Gansterer <paroga@paroga.com> |
| 6 | 6 |
| 7 This program is free software; you can redistribute it and/or modify | 7 This program is free software; you can redistribute it and/or modify |
| 8 it under the terms of the GNU Lesser General Public License (LGPL) | 8 it under the terms of the GNU Lesser General Public License (LGPL) |
| 9 version 2 as published by the Free Software Foundation. | 9 version 2 as published by the Free Software Foundation. |
| 10 | 10 |
| (...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 { | 203 { |
| 204 return base64DecodeInternal<char>(data, len, out, policy); | 204 return base64DecodeInternal<char>(data, len, out, policy); |
| 205 } | 205 } |
| 206 | 206 |
| 207 bool base64Decode(const String& in, Vector<char>& out, Base64DecodePolicy policy
) | 207 bool base64Decode(const String& in, Vector<char>& out, Base64DecodePolicy policy
) |
| 208 { | 208 { |
| 209 return base64DecodeInternal<UChar>(in.characters(), in.length(), out, policy
); | 209 return base64DecodeInternal<UChar>(in.characters(), in.length(), out, policy
); |
| 210 } | 210 } |
| 211 | 211 |
| 212 } // namespace WTF | 212 } // namespace WTF |
| OLD | NEW |