| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- //
- // StringExtension.swift
- // CryptoSwift
- //
- // Copyright (C) 2014-2017 Marcin Krzyżanowski <marcin@krzyzanowskim.com>
- // This software is provided 'as-is', without any express or implied warranty.
- //
- // In no event will the authors be held liable for any damages arising from the use of this software.
- //
- // Permission is granted to anyone to use this software for any purpose,including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions:
- //
- // - The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation is required.
- // - Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
- // - This notice may not be removed or altered from any source or binary distribution.
- //
- /** String extension */
- extension String {
- public func md5() -> String {
- return utf8.lazy.map({ $0 as UInt8 }).md5().toHexString()
- }
- public func sha1() -> String {
- return utf8.lazy.map({ $0 as UInt8 }).sha1().toHexString()
- }
- public func sha224() -> String {
- return utf8.lazy.map({ $0 as UInt8 }).sha224().toHexString()
- }
- public func sha256() -> String {
- return utf8.lazy.map({ $0 as UInt8 }).sha256().toHexString()
- }
- public func sha384() -> String {
- return utf8.lazy.map({ $0 as UInt8 }).sha384().toHexString()
- }
- public func sha512() -> String {
- return utf8.lazy.map({ $0 as UInt8 }).sha512().toHexString()
- }
- public func sha3(_ variant: SHA3.Variant) -> String {
- return utf8.lazy.map({ $0 as UInt8 }).sha3(variant).toHexString()
- }
- public func crc32(seed: UInt32? = nil, reflect: Bool = true) -> String {
- return utf8.lazy.map({ $0 as UInt8 }).crc32(seed: seed, reflect: reflect).bytes().toHexString()
- }
- public func crc16(seed: UInt16? = nil) -> String {
- return utf8.lazy.map({ $0 as UInt8 }).crc16(seed: seed).bytes().toHexString()
- }
- /// - parameter cipher: Instance of `Cipher`
- /// - returns: hex string of bytes
- public func encrypt(cipher: Cipher) throws -> String {
- return try Array(utf8).encrypt(cipher: cipher).toHexString()
- }
- /// - parameter cipher: Instance of `Cipher`
- /// - returns: base64 encoded string of encrypted bytes
- public func encryptToBase64(cipher: Cipher) throws -> String? {
- return try Array(utf8).encrypt(cipher: cipher).toBase64()
- }
- // decrypt() does not make sense for String
- /// - parameter authenticator: Instance of `Authenticator`
- /// - returns: hex string of string
- public func authenticate<A: Authenticator>(with authenticator: A) throws -> String {
- return try Array(utf8).authenticate(with: authenticator).toHexString()
- }
- }
|