| 123456789101112131415161718192021 |
- //
- // NoPadding.swift
- // CryptoSwift
- //
- // Created by Marcin Krzyzanowski on 02/04/16.
- // Copyright © 2016 Marcin Krzyzanowski. All rights reserved.
- //
- public struct NoPadding: Padding {
- public init() {
-
- }
-
- public func add(to data: Array<UInt8>, blockSize:Int) -> Array<UInt8> {
- return data;
- }
- public func remove(from data: Array<UInt8>, blockSize:Int?) -> Array<UInt8> {
- return data;
- }
- }
|