Crypto.h 572 B

12345678910111213141516171819202122232425
  1. //
  2. // Crypto.h
  3. // Crypto
  4. //
  5. // Created by Nate Racklyeft on 9/13/16.
  6. // Copyright © 2016 Pete Schwamb. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. //! Project version number for Crypto.
  10. FOUNDATION_EXPORT double CryptoVersionNumber;
  11. //! Project version string for Crypto.
  12. FOUNDATION_EXPORT const unsigned char CryptoVersionString[];
  13. // In this header, you should import all the public headers of your framework using statements like #import <Crypto/PublicHeader.h>
  14. @interface NSString (Crypto)
  15. @property (nonatomic, nonnull, readonly) NSString *sha1;
  16. @end