WSSEUsernameToken.as 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. /*
  2. Copyright (c) 2008, Adobe Systems Incorporated
  3. All rights reserved.
  4. Redistribution and use in source and binary forms, with or without
  5. modification, are permitted provided that the following conditions are
  6. met:
  7. * Redistributions of source code must retain the above copyright notice,
  8. this list of conditions and the following disclaimer.
  9. * Redistributions in binary form must reproduce the above copyright
  10. notice, this list of conditions and the following disclaimer in the
  11. documentation and/or other materials provided with the distribution.
  12. * Neither the name of Adobe Systems Incorporated nor the names of its
  13. contributors may be used to endorse or promote products derived from
  14. this software without specific prior written permission.
  15. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
  16. IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
  17. THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  18. PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
  19. CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  20. EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  21. PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  22. PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  23. LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  24. NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  25. SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  26. */
  27. package com.adobe.crypto
  28. {
  29. import mx.formatters.DateFormatter;
  30. import mx.utils.Base64Encoder;
  31. /**
  32. * Web Services Security Username Token
  33. *
  34. * Implementation based on algorithm description at
  35. * http://www.oasis-open.org/committees/wss/documents/WSS-Username-02-0223-merged.pdf
  36. */
  37. public class WSSEUsernameToken
  38. {
  39. /**
  40. * Generates a WSSE Username Token.
  41. *
  42. * @param username The username
  43. * @param password The password
  44. * @param nonce A cryptographically random nonce (if null, the nonce
  45. * will be generated)
  46. * @param timestamp The time at which the token is generated (if null,
  47. * the time will be set to the moment of execution)
  48. * @return The generated token
  49. * @langversion ActionScript 3.0
  50. * @playerversion Flash 9.0
  51. * @tiptext
  52. */
  53. public static function getUsernameToken(username:String, password:String, nonce:String=null, timestamp:Date=null):String
  54. {
  55. if (nonce == null)
  56. {
  57. nonce = generateNonce();
  58. }
  59. nonce = base64Encode(nonce);
  60. var created:String = generateTimestamp(timestamp);
  61. var password64:String = getBase64Digest(nonce,
  62. created,
  63. password);
  64. var token:String = new String("UsernameToken Username=\"");
  65. token += username + "\", " +
  66. "PasswordDigest=\"" + password64 + "\", " +
  67. "Nonce=\"" + nonce + "\", " +
  68. "Created=\"" + created + "\"";
  69. return token;
  70. }
  71. private static function generateNonce():String
  72. {
  73. // Math.random returns a Number between 0 and 1. We don't want our
  74. // nonce to contain invalid characters (e.g. the period) so we
  75. // strip them out before returning the result.
  76. var s:String = Math.random().toString();
  77. return s.replace(".", "");
  78. }
  79. internal static function base64Encode(s:String):String
  80. {
  81. var encoder:Base64Encoder = new Base64Encoder();
  82. encoder.encode(s);
  83. return encoder.flush();
  84. }
  85. internal static function generateTimestamp(timestamp:Date):String
  86. {
  87. if (timestamp == null)
  88. {
  89. timestamp = new Date();
  90. }
  91. var dateFormatter:DateFormatter = new DateFormatter();
  92. dateFormatter.formatString = "YYYY-MM-DDTJJ:NN:SS"
  93. return dateFormatter.format(timestamp) + "Z";
  94. }
  95. internal static function getBase64Digest(nonce:String, created:String, password:String):String
  96. {
  97. return SHA1.hashToBase64(nonce + created + password);
  98. }
  99. }
  100. }