コード例 #1
0
ファイル: NonceStore.cs プロジェクト: Glipho/oauth-providers
        /// <summary>
        /// Stores a given nonce and timestamp. 
        /// </summary>
        /// <param name="context">The context, or namespace, within which the
        /// <paramref name="nonce"/> must be unique.
        /// The context SHOULD be treated as case-sensitive.
        /// The value will never be <c>null</c> but may be the empty string.</param>
        /// <param name="nonce">A series of random characters.</param>
        /// <param name="timestampUtc">The UTC timestamp that together with the nonce string make it unique
        /// within the given <paramref name="context"/>.
        /// The timestamp may also be used by the data store to clear out old nonces.</param>
        /// <returns>
        /// True if the context+nonce+timestamp (combination) was not previously in the database.
        /// False if the nonce was stored previously with the same timestamp and context. 
        /// </returns>
        /// <remarks>
        /// The nonce must be stored for no less than the maximum time window a message may
        /// be processed within before being discarded as an expired message.
        /// This maximum message age can be looked up via the
        /// <see cref="P:DotNetOpenAuth.Configuration.MessagingElement.MaximumMessageLifetime"/>
        /// property, accessible via the <see cref="P:DotNetOpenAuth.Configuration.MessagingElement.Configuration"/>
        /// property. 
        /// </remarks>
        public bool StoreNonce(string context, string nonce, DateTime timestampUtc)
        {
            if (string.IsNullOrWhiteSpace(context))
            {
                throw new ArgumentException("context does not have a value.", "context");
            }

            if (string.IsNullOrWhiteSpace(nonce))
            {
                throw new ArgumentException("nonce does not have a value.", "nonce");
            }

            var nonceEntity = new Database.Nonce(context, nonce, timestampUtc, timestampUtc + DotNetOpenAuthSection.Messaging.MaximumMessageLifetime);
            var nonceAdded = this.nonces.Add(nonceEntity);
            if (nonceAdded)
            {
                // Only clear nonces after successfully storing a nonce.
                // This mitigates cheap DoS attacks that take up a lot of
                // database cycles.
                this.ClearNoncesIfAppropriate();
            }

            return nonceAdded;
        }
コード例 #2
0
ファイル: Nonce.cs プロジェクト: Glipho/oauth-providers
        /// <summary>
        /// Determines whether the specified <see cref="Nonce"/> is equal to the current <see cref="Nonce"/>.
        /// </summary>
        /// <param name="nonce">The <see cref="Nonce"/> to compare with the current <see cref="Nonce"/>.</param>
        /// <returns>
        /// true if the specified <see cref="Nonce"/> is equal to the current <see cref="Nonce"/>; otherwise false.
        /// </returns>
        public bool Equals(Nonce nonce)
        {
            if (nonce == null)
            {
                return false;
            }

            return this.Context == nonce.Context
                && this.Code == nonce.Code
                && this.Id == nonce.Id
                && this.Issued == nonce.Issued
                && this.Expires == nonce.Expires;
        }